springboot2.0 Hystrix Unable to connect to Command Metric Stream

springboot2.0 Hystrix  Unable to connect to Command Metric Stream

pom.xml

 
        org.springframework.boot
        spring-boot-starter-parent
        2.0.1.RELEASE
        
    

  

        
            org.springframework.cloud
            spring-cloud-starter-netflix-hystrix-dashboard
        

        
            org.springframework.cloud
            spring-cloud-starter-netflix-hystrix
        

        
            org.springframework.boot
            spring-boot-starter-actuator
        
        
        其余省略

    

启动类添加注解

@SpringBootApplication
@EnableHystrixDashboard
@EnableCircuitBreaker

配置文件 application.yml 添加

management:
  endpoints:
    web:
      exposure:
        include: ["health","info","hystrix.stream"]
      base-path: /

或者

management:
  endpoints:
    web:
      exposure:
        include: ["*"]
      base-path: /

http://hystrix-app:port/hystrix.stream 

你可能感兴趣的:(spring,cloud)