spring cloud hystrix監控
阿新 • • 發佈:2018-03-13
ota oar ati AI gpo 1.5 div OS org
<dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>Dalston.SR1</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-hystrix-dashboard</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-hystrix</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> <version>1.5.3.RELEASE</version> </dependency> </dependencies>
@SpringBootApplication @EnableHystrixDashboard public class DashboardApp { public static void main(String[] args) { new SpringApplicationBuilder(DashboardApp.class).properties("server.port=8082").run(args); } }
http://localhost:8082/hystrix
http://localhost:8081/hystrix.stream
spring cloud hystrix監控