0504-Hystrix保护应用-Hystrix Dashboard的使用与常见问题总结

一、概述

  Hystrix的主要优势之一是它收集的每个HystrixCommand的度量集合。 Hystrix仪表板以高效的方式显示每个断路器的运行状况。

  以前查看通过http://localhost:8761/hystrix.stream,注意如果配置了相对地址需要加上http://localhost:8761/admin/hystrix.stream

1.1、增加管理平台

1》增加pom

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <!-- Edgware.SR3文档介绍使用这个,实际还没有,需引用下面的 -->
            <!-- <artifactId>spring-cloud-starter-hystrix-netflix-dashboard</artifactId> -->
            <artifactId>spring-cloud-starter-hystrix-dashboard</artifactId>
        </dependency>

2》增加启动类注解

@SpringBootApplication
@EnableHystrixDashboard
public class EurekaApplication {
    public static void main(String[] args) {
        SpringApplication.run(EurekaApplication.class, args);
    }
}

3》启动

查看地址:http://localhost:8030/hystrix

1.2、在管理平台增加hystrix.stream信息查看

在地址栏输入要查看地址:http://localhost:8761/admin/hystrix.stream

  

查看参数:

转载于:https://www.cnblogs.com/bjlhx/p/8910515.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值