Open pbaletkeman opened 6 years ago
Did you find the problem?
No I didn't find a solution to this
On Mon, May 28, 2018, 4:16 AM khushbuv, notifications@github.com wrote:
Did you find the problem?
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/learning-spring-boot/learning-spring-boot-2nd-edition-code/issues/7#issuecomment-392455188, or mute the thread https://github.com/notifications/unsubscribe-auth/AVXUwHEJOTHtYin1M2tmFFm0kt7SsWkTks5t27JwgaJpZM4RrviO .
In spring boot 2.x.x its http://localhost:8080/actuator/hystrix.stream (the difference is actuator/
)
Than if you'll get Unable to connect to Command Metric Stream.
at Hystrix dashboard you need to add to your application.yml
hystrix:
dashboard:
proxy-stream-allow-list: "*"
The following URL gives me a 404 http://localhost:8080/hystrix.stream
I've enabled DEBUG and this shows up in the log
I will continue to see what I can find out and try to fix this. However it does appear that many people have problems trying to enable/find hystrix.stream.