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进行汇总,但数据没有持久化。
来源:CSDN
作者:挨踢的小胖
链接:https://blog.csdn.net/i792439187/article/details/104193226