actuator/metrics 端点 [spring-boot 2.0] 中的 Hystrix 指标
Hystrix metrics in the actuator/metrics endpoint [spring-boot 2.0]
可以通过与 spring-boot 1.5?
类似的方式获取 hystrix 指标信息
在 1.5 公制端点中,我有这样的东西:
"gauge.servo.hystrix.hystrixcommand.[service-name].[method].errorcount": 0,
"gauge.servo.hystrix.hystrixcommand.[service-name].[method].requestcount": 0,
"gauge.servo.hystrix.hystrixcommand.[service-name].[method].latencytotal_mean": 0,
但现在 actuator/metric 使用 Micrometer 的端点,我找不到对术语 "hystrix"、"netflix" 等的任何引用
我已经使用 @EnableCircuitBreaker
和 hystrix:metrics:enabled: true
配置了我的应用程序。
有一些方法可以在不使用 hystrix.stream 端点的情况下获取此信息吗?或者这应该有效,我是不是做错了什么?
可以通过与 spring-boot 1.5?
类似的方式获取 hystrix 指标信息在 1.5 公制端点中,我有这样的东西:
"gauge.servo.hystrix.hystrixcommand.[service-name].[method].errorcount": 0,
"gauge.servo.hystrix.hystrixcommand.[service-name].[method].requestcount": 0,
"gauge.servo.hystrix.hystrixcommand.[service-name].[method].latencytotal_mean": 0,
但现在 actuator/metric 使用 Micrometer 的端点,我找不到对术语 "hystrix"、"netflix" 等的任何引用
我已经使用 @EnableCircuitBreaker
和 hystrix:metrics:enabled: true
配置了我的应用程序。
有一些方法可以在不使用 hystrix.stream 端点的情况下获取此信息吗?或者这应该有效,我是不是做错了什么?