org.springframework.cloud.netflix.hystrix.dashboard.HystrixDashboardConfiguration$ProxyStreamServlet.doGet - Spring Cloud Turbine Streams

后端 未结 1 387
误落风尘
误落风尘 2020-12-07 00:12

I\'m working on Spring Boot v2.2.6.RELEASE + Eureka + Cloud Config + Hystrix + Turbine Example. Insipration from the https://app.pluralsight.com/course-player?c

相关标签:
1条回答
  • 2020-12-07 01:03

    @Ash_P I was able to get the dashboard running fine for the code you put up for http://localhost:8085/turbine.stream?cluster=TOLLRATE-BILLBOARD

    Issue number 1: Please check if @EnableTurbine annotation is present in CoHystrixDashboardApplication as in the repository shared, it was commented. Without this basic switch on the dashboard, your dashoard will not be able to consume the turbine stream

    @EnableTurbine
    @EnableHystrixDashboard
    @SpringBootApplication
    public class CoHystrixDashboardApplication
    

    Issue number 2: Check if rabbit-mq is running in the background. Use docker to simplify this:

    docker run -d --hostname local-rabbit --name test-rmq -p 15672:15672 -p 5672:5672 rabbitmq:3.6.9-management
    

    Please check and let me know if the issue is resolved.

    0 讨论(0)
提交回复
热议问题