Hystrix+dashboard入门简单配置运行

spring系列版本:

  1. spring boot : 2.0.9.RELEASE
  2. spring cloud: Finchley.SR2

相关操作

  • 引入相关依赖
        
            org.springframework.cloud
            spring-cloud-starter-netflix-hystrix
        

        
            org.springframework.cloud
            spring-cloud-starter-netflix-hystrix-dashboard
        
 
        
            org.springframework.boot
            spring-boot-starter-actuator
        
  • 启动类添加@EnableHystrixDashboard注解

  • 启动访问
    Hystrix+dashboard入门简单配置运行_第1张图片

Title:填写配置文件配置 spring.application.name=sms

  • 单击Monitor stream 后,页面出现Unable to connect to Command Metric Stream
 后台报: Failed opening connection to http://localhost:8082/actuator/hystrix.stream : 404 : HTTP/1.1 404 

Hystrix+dashboard入门简单配置运行_第2张图片

  • 在 application.yml 文件中增加以下配置:
#暴露全部的监控信息
management:
  endpoints:
    web:
      exposure:
        include: "*"
  • 此时再次启动,发现上述错误已经没有了,再次访问监控面板,是loading 状态,请求可查看结果

Hystrix+dashboard入门简单配置运行_第3张图片

参考:https://blog.csdn.net/fxbin123/article/details/82322476

你可能感兴趣的:(Spring,Cloud)