SpringCloud学习记录:springboot 2.x集成熔断器hystrix监控时出现Unable to connect to Command Metric Stream的问题解决

目录

  • Hystrix Dashboard简介(摘抄)
    • 问题的出现及解决

Hystrix Dashboard简介(摘抄)

在微服务架构中为例保证程序的可用性,防止程序出错导致网络阻塞,出现了断路器模型。断路器的状况反应了一个程序的可用性和健壮性,它是一个重要指标。Hystrix Dashboard是作为断路器状态的一个组件,提供了数据监控和友好的图形化界面。

问题的出现及解决

最近学习SpringCloud微服务架构,在使用Hystrix Dashboard监控服务时,因使用的是SpringBoot2.x最新版本,通过网上资料使用https://hystrix-app:port/hystrix.stream 作为接入点时,出现了文章标题的问题,最近发现在进入http://localhost:8088/hystrix后,人家已经有提示说的很清楚了,如图:
SpringCloud学习记录:springboot 2.x集成熔断器hystrix监控时出现Unable to connect to Command Metric Stream的问题解决_第1张图片
最后输入https://hystrix-app:port/actuator/hystrix.stream,进入监控页面,问题已经解决,出现了Loading,在消费端通过Feign访问生产者服务,Hystrix DashBoard出现了监控信息,如图:
SpringCloud学习记录:springboot 2.x集成熔断器hystrix监控时出现Unable to connect to Command Metric Stream的问题解决_第2张图片
学习阶段,就遇到问题作记录,不喜勿喷!每天进步一点点。

你可能感兴趣的:(SpringCloud学习记录:springboot 2.x集成熔断器hystrix监控时出现Unable to connect to Command Metric Stream的问题解决)