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" 等的任何引用

我已经使用 @EnableCircuitBreakerhystrix:metrics:enabled: true 配置了我的应用程序。

有一些方法可以在不使用 hystrix.stream 端点的情况下获取此信息吗?或者这应该有效,我是不是做错了什么?

在此 tutorial 之后,您必须将以下 bean 添加到您的应用程序以注册 Hystrix Metrics Binder:

@Configuration
public class MetricsConfig {

@Bean
HystrixMetricsBinder registerHystrixMetricsBinder() {
    return new HystrixMetricsBinder();
 }
}

正如本 issue 中的解释,hystrix 指标现在应如下所示:

hystrix.errors{event="short_circuited"}