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的监控页面不显示内容的主要内容,如果未能解决你的问题,请参考以下文章

Hystrix 仪表板总是显示加载屏幕

Hystrix服务监控

Hystrix 仪表板

微服务系列之Hystrix服务监控

Hystrix Dashboard

Hystrix:dashboard监控页面