Springcloud中配置了hystrix,但是无法打开hystrix.stream

版本:Spring Cloud Finchley.M8
1. 熔断器功能可以正常使用,但是无法打开/hystrix.stream
http://localhost:7900/hystrix.stream
2. hystrix dashboard也无法打开/hystrix.stream

localhost:8800/hystrix不需要.stream;
另外,spring-boot-starter-actuator要引用了

楼上正解,url不用后缀的,而且要引用相应的依赖。

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

找到问题了。
需要配置类配置下面
@Bean
public ServletRegistrationBean hystrixMetricsStreamServlet() {
ServletRegistrationBean registration = new ServletRegistrationBean(new HystrixMetricsStreamServlet());
registration.addUrlMappings("/hystrix.stream");
return registration;
}