Hystrix Stream的监控页面不显示内容
Posted z0909y
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hystrix Stream的监控页面不显示内容相关的知识,希望对你有一定的参考价值。
打开Hystrix Stream页面,进入后,发现只有一行Unable to connect to Command Metric Stream.
因为springboot的默认路径不是 "/hystrix.stream",在启动类中加入如下代码
@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; }
重启项目,并重新打开监控页面,访问一下即可就可以了
以上是关于Hystrix Stream的监控页面不显示内容的主要内容,如果未能解决你的问题,请参考以下文章