Hystrix Dashboard
Posted coderrdf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hystrix Dashboard相关的知识,希望对你有一定的参考价值。
Hystrix监控问题:
pom.xml:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-hystrix-dashboard</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
在controller上加上注解:
@SpringBootApplication
@EnableHystrixDashboard
启动后:访问 http://127.0.0.1:8030/hystrix.stream 没问题
监控某个服务时:一致出现loading
解决:1.手动访问监控的API
2.更换浏览器(google)
3.application.properties在配置中加入:management.endpoints.web.exposure.include="*"
以上是关于Hystrix Dashboard的主要内容,如果未能解决你的问题,请参考以下文章
0503-Hystrix保护应用-feign的hystrix支持