Before posting this question, I went through numerous links like : Unable to connect to Command Metric Stream for Hystrix Dashboard with Spring Cloud and Unable to connect t
try adding the below line in Hystrix Dashboard project it worked for me.
application.yml
hystrix:
dashboard:
proxy-stream-allow-list: "*"
I just added below in application.properties
file and it started working:
management.endpoint.hystrix.stream.enabled=true
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