(SpringCloud成长笔记(八)Hystrix Dashboard监控看板

SpringCloud成长笔记(八)Hystrix Dashboard监控看板

  • 一、简介
  • 二、环境搭建
  • 三、源码
  • 四、运行
  • 五、github源码
  • 六、参考资料

一、简介

除了之前我们用的zipkin可以监控服务间的调用情况,这里我们再看看Hystrix的Dashboard的效果。

二、环境搭建

上一个工程
在这个工程的基础上进行调整。

三、源码

1、pom.xml的依赖


		
			org.springframework.boot
			spring-boot-starter-actuator
		
		
		
			org.springframework.cloud
			spring-cloud-starter-netflix-hystrix-dashboard
		

2、application.properties中增加配置

management.endpoints.web.exposure.include=*
management.endpoint.health.show-details=ALWAYS

之前我们在性能优化的时候已经配置过开启hystrix了

# 在feign中开启hystrix功能,默认情况下feign不开启hystrix功能,开启断路器(把此配置写到 application.yml 中熔断不会生效)
feign.hystrix.enabled=true

微服务的启动类中增加注解

@EnableHystrixDashboard
@EnableHystrix

四、运行

浏览器输入http://localhost:18903/hystrix
如果配置错误,请求http://localhost:18903/hystrix的时候会一直下载Hystrix的文件
(SpringCloud成长笔记(八)Hystrix Dashboard监控看板_第1张图片
检查配置信息,正确的效果如下
(SpringCloud成长笔记(八)Hystrix Dashboard监控看板_第2张图片
输入微服务地址
Unable to connect to Command Metric Stream.
(SpringCloud成长笔记(八)Hystrix Dashboard监控看板_第3张图片
启动类中增加servlet

 @Bean
    public ServletRegistrationBean getServlet(){
        HystrixMetricsStreamServlet streamServlet = new HystrixMetricsStreamServlet();
        ServletRegistrationBean registrationBean = new ServletRegistrationBean(streamServlet);
        registrationBean.setLoadOnStartup(1);
        registrationBean.addUrlMappings("/actuator/hystrix.stream");
        registrationBean.setName("HystrixMetricsStreamServlet");
        return registrationBean;
    }

这时候路径也发生了改变,需要在monitor里面输入http://localhost:18903/actuator/hystrix.stream
请求http://localhost:18903/test2?name=6,看板如下:
主要是SpringBoot和SpringCloud版本的问题
(SpringCloud成长笔记(八)Hystrix Dashboard监控看板_第4张图片

五、github源码

Github

六、参考资料

你可能感兴趣的:(SpringCloud)