springcloud 마이크로 서비스 설정 모니터링 단점hystrix.stream

1881 단어
springcloud 마이크로 서비스 설정 모니터링 단점hystrix.stream
스프링 클라우드 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;
    }

좋은 웹페이지 즐겨찾기