Unable to connect to Command Metric Stream. in Hystrix Dashboard issue

in dashboard project add this to your properties

hystrix:
  dashboard:
    proxy-stream-allow-list: "*"

and, in weather-app add this

management:
  endpoints:
    web:
      exposure:
        include: "*"

then, open http://localhost:8080/hystrix and add http://localhost:8000/actuator/hystrix.stream

https://github.com/adetiamarhadi/spring-cloud-hystrix-dashboard.git
https://github.com/adetiamarhadi/spring-cloud-hystrix-weather-app.git

Leave a Comment