hystrix-dashboard用来监控hystrix熔断器的状态
通过Hystrix提供的hystrix.stream实现,把对应的URL地址放入Hystrix Dashboard中查看状态
局限:hystrix-dashboard只能监控一个服务
hystrix-dashboard配合actuator使用
须打开所有端口 的监控
management:
endpoints:
web:
exposure:
include: '*' #打开所有端口 的监控
localhost:8080/actuator/hystrix.stream
为了弥补hystrix-dashboard只能监控一个服务的局限,须结合Turbine来使用
Turbine就是聚合系统的所有集群的健康状态,就是把每个服务的/hystrix.stream,全部聚合在/turbine.stream中,通过Hystrix Dashboard中可视化查看