spring cloud使用hystrix-dashboard对hystrix实时监看

hystrix-dashboard用来对hystrix实时监看

使用的spring boot版本:2.1.7.RELEASE
使用的spring cloud版本:Greenwich.SR1

为使用了断路器的pom添加如下依赖:

        <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>

为application启动类设置@EnableHystrixDashboard注解

访问http://localhost:7199/hystrix页面,7199是应用端口。
可以看到一个需要输入三个配置的页面,一个是url,一个是delay,一个是title。

  • url输入:http://localhost:7199/actuator/hystrix.stream
  • delay输入:2000
  • title输入:随意名称

注意:

  • 这里的url中的/actuator,由于使用的spring cloud版本不同,在有些书籍和博客中输入的是http://localhost:7199/hystrix.stream,这样会显示Unable to connect to Command Metric Stream。
  • 在配置文件中需要添加,这是为了公开所有Spring Boot Actuator的接口:
management:
    endpoints:
       web:
          exposure:
             include: "*"

否则也会提示Unable to connect to Command Metric Stream。

成功之后我们会看到一个图,显示有一个实心圆和一条线,对使用了断路器的接口发起请求,就可以看到实心圆的大小变化和曲线的走势;
实心圆的健康度从绿色、黄色、橙色、红色递减,大小根据访问流量变化;
曲线显示了两分钟内流量的走势;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值