SpringCloud服务监控-hystrixDashboard

网友投稿 243 2022-09-24

SpringCloud服务监控-hystrixDashboard

1.概述

除了隔离依赖服务的调用以外,Hystrix还提供了准实时的调用监控(Hystrix Dashboard),Hystrix会持续地记录所有通过Hystrix发起的请求的执行信息,并以统计报表和图形的形式展示给用户,包括每秒执行多少请求多少成功,多少失败等。

Netflix通过hystrix-metrics-event-stream项目实现了对以上指标的监控。Spring Cloud也提供了Hystrix Dashboard的整合,对监控内容转化成可视化界面。

2.环境搭建步骤

在前面几节中的消费者中添加pom依赖。

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

在启动类上添加注解添加@EnableHystrixDashboard 开启Dashboard。

@SpringBootApplication@EnableDiscoveryClient // 开启EurekaClient功能@EnableFeignClients // 开启Feign功能@EnableCircuitBreaker//对hystrixR熔断机制的支持@EnableHystrixDashboard //开启仪表盘public class SpringcloudDemoConsumerApplication { public static void main(String[] args) { SpringApplication.run(SpringcloudDemoConsumerApplication.class, args); }}

注册HystrixMetricsStreamServlet在2.x之前的版本中,会自动注入该Servlet的,但是在2.x之后的版本,没有自动注册该Servlet。看源码的解释。

/** * 配置Hystrix.stream的servlet * @return */@Beanpublic ServletRegistrationBean registrationBean() { HystrixMetricsStreamServlet streamServlet = new HystrixMetricsStreamServlet(); ServletRegistrationBean registrationBean = new ServletRegistrationBean(streamServlet); registrationBean.setLoadOnStartup(1); registrationBean.addUrlMappings("/hystrix.stream"); registrationBean.setName("HystrixMetricsStreamServlet"); return registrationBean;}

3.测试

4.如何查看

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:降价5亿再挂牌,上海明天广场25层房产拍卖背后还有故事!
下一篇:SpringBoot系列课程(四)-自动化配置原理
相关文章

 发表评论

暂时没有评论,来抢沙发吧~