Hystrix的健康终点不可用

问题描述 投票:0回答:2

我正在尝试使用Spring Booter模式和Spring Boot以及Netflix的Hystrix实现,我正在努力访问其健康端点。

文档提到它应该在/hystrix.stream中可用,但是没有发生。此外,我注意到应用程序初始化时出现以下错误:Endpoint ID 'hystrix.stream' contains invalid characters, please migrate to a valid format.

有人知道如何解决此问题或如何更改端点名称?

版本:

Springboot 2.1.4.RELEASE

Spring Cloud Greenwich.SR1

提前致谢!

spring-boot spring-boot-actuator hystrix
2个回答
1
投票

当服务器启动时,您应该能够在日志中看到类似的内容:

INFO 14451 --- [ost-startStop-1] o.s.b.a.e.web.ServletEndpointRegistrar   : Registered '/actuator/hystrix.stream' to hystrix.stream-actuator-endpoint

试试/actuator/hystrix.stream


0
投票

对于spring boot 2.1.x,hystrix的默认端点URL是/actuator/hystrix.stream

© www.soinside.com 2019 - 2024. All rights reserved.