hystrix dashboard无法连接问题
在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
即可。