其他分享
首页 > 其他分享> > 春季-如何从执行器/指标端点中排除Hystrix指标?

春季-如何从执行器/指标端点中排除Hystrix指标?

作者:互联网

我有一个启用了Actuator和Hystrix的spring-boot-app.
Spring-Boot版本:1.3.1.发布

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-eureka</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-hystrix</artifactId>
</dependency>

当我将@HystrixCommand添加到某些方法时,/ metrics端点显示来自hystrix的所有度量标准:

gauge.hystrix.HystrixCommand.RestEndpoints.TestController.test.errorPercentage: 0,
gauge.hystrix.HystrixThreadPool.RestEndpoints.rollingMaxActiveThreads: 1,
...

题:
如何从/ metricsendpoint完全排除hystrix-metrics?

更新1
我试图通过以下方法排除ServoMetrics和SpectatorMetrics:

1)

@EnableAutoConfiguration(exclude={ServoMetricsAutoConfiguration.class,
 SpectatorMetricsAutoConfiguration.class} )

2)

@SpringBootApplication(exclude={ServoMetricServices.class, SpectatorMetricServices.class})

但是两者都没有达到预期的效果.

解决方法:

issue已创建并修复.现在,您可以在快照中设置以下内容:
hystrix.metrics.enabled = false.

标签:spring-boot-actuator,hystrix,spring-boot,spring-cloud,spring
来源: https://codeday.me/bug/20191027/1944548.html