8、【Java Web系列】单节点应用监控Hystrix Stream

旧时模样 提交于 2020-02-06 13:09:34

1、在上一篇的基础上添加hystrix dashboard依赖。

implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-hystrix-dashboard'

2、启动类添加注解。

@EnableHystrixDashboard

3、输入http://localhost:8082/actuator

 

4、启动程序,输入http://localhost:8082/hystrix

5、输入http://localhost:8082/actuator/hystrix.stream,点击Monitor Stream

6、可以使用Turbine进行汇总,但数据没有持久化。

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!