Hystrix+dashboard入门简单配置运行

spring系列版本:

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

相关操作

  • 引入相关依赖
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>
        </dependency>
 
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
  • 启动类添加@EnableHystrixDashboard注解

  • 启动访问
    在这里图片描述

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 

在这里插入图片描述

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

在这里插入图片描述

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

猜你喜欢

转载自blog.csdn.net/HonsonNgai/article/details/89300789
今日推荐