我是靠谱客的博主 沉静鸵鸟,最近开发中收集的这篇文章主要介绍Unable to connect to Command Metric Stream. 问题解决,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
初次使用SpringCloud Hystrix DashBoard 会出现 Unable to connect to Command Metric Stream
通过启动信息可以看到,
http://localhost:8181/actuator/hystrix.stream 是404 ,说明在SpringCloud Finchley.SR1 版本中,该访问路径是默认不开启的,所以我们需要手动开启昂
2018-09-03 00:34:19.382 WARN 29124 --- [nio-8181-exec-2] ashboardConfiguration$ProxyStreamServlet : Failed opening connection to http://localhost:8181/actuator/hystrix.stream : 404 : HTTP/1.1 404
2018-09-03 00:34:19.382 WARN 29124 --- [nio-8181-exec-1] ashboardConfiguration$ProxyStreamServlet : Failed opening connection to http://localhost:8181/actuator/hystrix.stream : 404 : HTTP/1.1 404
在 application.yml
文件中增加以下配置:
#暴露全部的监控信息
management:
endpoints:
web:
exposure:
include: "*"
此时再次启动,发现上述错误已经没有了,再次访问监控面板,是loading 状态。。。
调用feign 服务API,再次查看界面,在 Dashboard 界面即可看到 Hystrix 监控界面:
参考文章:
https://www.cnblogs.com/mark7/p/8920288.html
https://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#boot-features-security-actuator
最后
以上就是沉静鸵鸟为你收集整理的Unable to connect to Command Metric Stream. 问题解决的全部内容,希望文章能够帮你解决Unable to connect to Command Metric Stream. 问题解决所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复