Chapter 7, Part 2 : hystrix.stream not found
The following URL gives me a 404 http://localhost:8080/hystrix.stream
I've enabled DEBUG and this shows up in the log
DEBUG 9152 --- [ctor-http-nio-2] .b.a.e.w.r.WebFluxEndpointHandlerMapping : Looking up handler method for path /hystrix.stream
DEBUG 9152 --- [ctor-http-nio-2] .b.a.e.w.r.WebFluxEndpointHandlerMapping : Did not find handler method for [/hystrix.stream]
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.
Did you find the problem?
No I didn't find a solution to this
On Mon, May 28, 2018, 4:16 AM khushbuv, [email protected] 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: "*"