还是在学习hystrix监控的时候遇到了一个问题,访问过http://localhost:7913/hystrix.stream之后就显示Unable to connect to Command Metric Stream。这是为什么呢?
我就查了一下资料,前辈说springBoot1.5是可以的,那为什么2.0就不行了呢?
进入源代码中查看一下,发现spring2.0的一个Servlect被注释掉了,我们只要在自己的项目里配置上这个servlet就ok了。
具体操作:
@Bean
public ServletRegistrationBean getServlet() {
HystrixMetricsStreamServlet streamServlet = new HystrixMetricsStreamServlet();
ServletRegistrationBean registrationBean = new ServletRegistrationBean(streamServlet);
registrationBean.setLoadOnStartup(1);
registrationBean.addUrlMappings("/hystrix.stream");
registrationBean.setName("HystrixMetricsStreamServlet");
return registrationBean;
}
这样就可以了。
网友评论