在Spring Boot较新的版本中(例如:2.0.2.RELEASE),hystrix.stream的地址有所改变,所以会导致hystrix dashboard无法访问,解决办法:
http://host-name:port/hystrix中的url
http://host-name:port/hystrix.stream
变为了http://host-name:port/actuator/hystrix.stream
同时在配置文件中添加:
management.endpoints.web.exposure.include=hystrix.stream
即可。