learning-spring-boot / learning-spring-boot-2nd-edition-code

Source code for Learning Spring Boot 2nd Edition
http://greglturnquist.com/books/learning-spring-boot
Other
75 stars 32 forks source link

Chapter 7, Part 2 : hystrix.stream not found #7

Open pbaletkeman opened 6 years ago

pbaletkeman commented 6 years ago

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.

khushbuv commented 6 years ago

Did you find the problem?

pbaletkeman commented 6 years ago

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 .

olegkamuz commented 4 years ago

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