作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个启用了 Actuator 和 Hystrix 的 spring-boot-app。
Spring-Boot-版本:1.3.1.RELEASE
<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,
...
问题:
如何从 /metrics
端点中完全排除 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 - 如何从 Actuator/metrics 端点中排除 Hystrix Metrics?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34896557/
我是一名优秀的程序员,十分优秀!