http://localhost:8086/actuator/hystrix.stream

 

在启动类加上,就ok了

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

 

相关文章:

  • 2021-08-17
  • 2022-02-26
  • 2021-08-02
  • 2022-12-23
  • 2021-11-25
  • 2021-12-04
  • 2022-12-23
猜你喜欢
  • 2021-07-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-26
相关资源
相似解决方案