learning-spring-boot-2nd-edition-code icon indicating copy to clipboard operation
learning-spring-boot-2nd-edition-code copied to clipboard

Chapter 7, Part 2 : hystrix.stream not found

Open pbaletkeman opened this issue 7 years ago • 3 comments

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.

pbaletkeman avatar Jan 24 '18 18:01 pbaletkeman

Did you find the problem?

khushbuv avatar May 28 '18 08:05 khushbuv

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 .

pbaletkeman avatar May 28 '18 09:05 pbaletkeman

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: "*"

olegkamuz avatar Aug 18 '20 11:08 olegkamuz