Unable to connect to Command Metric Stream. in Hystrix Dashboard issue

in dashboard project add this to your properties hystrix: dashboard: proxy-stream-allow-list: “*” and, in weather-app add this management: endpoints: web: exposure: include: “*” then, open http://localhost:8080/hystrix and add http://localhost:8000/actuator/hystrix.stream https://github.com/adetiamarhadi/spring-cloud-hystrix-dashboard.git https://github.com/adetiamarhadi/spring-cloud-hystrix-weather-app.git

Configure Spring Boot with two ports

As is has been mentioned before, server.port and management.port along with management.context-path properties could be set to make the embedded container to listen on different ports (management-related properties to access Actuator endpoints). To listen on ports other than server.port and management.port: @Configuration public class EmbeddedTomcatConfiguration { @Value(“${server.additionalPorts}”) private String additionalPorts; @Bean public EmbeddedServletContainerFactory servletContainer() { … Read more