springcloud 微服務配置監控端點 hystrix.stream

gung123發表於2020-03-10

springcloud 微服務配置監控端點 hystrix.stream

有spring cloud b2b2c電子商務需求的朋友可以加企鵝求求:一零三八七七四六二六 

spring cloud  2.0.2.RELEASE 微服務系統中需要將服務新增到hystrix dashboard監控,#在被監控服務上新增暴露端點時yml配置如下:

management:
  endpoints:
    web:
      exposure:
        include: hystrix.stream

但是訪問 host:port/actuator/hystrix.stream沒反應,在啟動類加入瞭如下程式碼才OK,原因還不知道,先做個記錄

@Bean
    public ServletRegistrationBean hystrixMetricsStreamServlet() {
        ServletRegistrationBean registration = new ServletRegistrationBean(new HystrixMetricsStreamServlet());
        registration.addUrlMappings("/actuator/hystrix.stream");
        return registration;
    }



來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69952307/viewspace-2679479/,如需轉載,請註明出處,否則將追究法律責任。

相關文章