spring cloud第五步:断路器Hystrix 仪表盘 (基于fein)

一、fein_test工程的pom.xml添加依赖:

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-hystrix-dashboard</artifactId>
        </dependency>

        <dependency>
            <groupId>com.netflix.hystrix</groupId>
            <artifactId>hystrix-javanica</artifactId>
            <version>1.5.12</version>
        </dependency>


二、在主程序启动类中加入注解@EnableHystrixDashboard和@EnableCircuitBreaker

 
@SpringBootApplication
@EnableDiscoveryClient
@EnableFeignClients
@EnableCircuitBreaker
@EnableHystrixDashboard
public class FeignTestApplication {
	public static void main(String[] args) {
		SpringApplication.run(FeignTestApplication.class, args);
	}
}
三、访问 
http://localhost:8765/hystrix,界面如下: 
 
 
 
 
四、上图中地址栏输入要监控的服务,注意端口号后面跟的一定是/tuebine.stream,
Delay按默认,Title随意填写,作标识用,然后点击Monitor Stream
五、访问服务http://192.168.2.77:8765/hello?name=czy,这时候就可以看到监控界面如下:
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值