我创建了一个微服务,其中包含以下Spring云版本Camden.SR2
的依赖项。 Spring Boot 1.4.1。 http://localhost:8080/hystrix.stream
没有回复。
如果我将Spring Cloud版本设为Brixton.*
(RELEASE,SR1,...),我只会在浏览器中获得ping:
作为回复。
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</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-data-rest</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
application.properties
spring.application.name=sample-service
server.port = 8080
应用
@SpringBootApplication
@EnableCircuitBreaker
public class SampleApplication {
public static void main(String[] args) {
SpringApplication.run(SampleApplication.class, args);
}
}
答案 0 :(得分:10)
对于使用春季启动2的人(我使用2.0.2.RELEASE)
,hystrix.stream
端点已移至/actuator/hystrix.stream
。
对我来说这个网址有效:
http://localhost:8082/actuator/hystrix.stream
是的,通过以下属性启用此执行器端点:
management.endpoints.web.exposure.include=hystrix.stream
答案 1 :(得分:5)
在Spring Boot 1.5.x Hystrix.stream
中,只有在实际执行的呼叫被@HystrixCommand
如果您注释方法,它将在使用时将数据发布到流。
更多信息:http://cloud.spring.io/spring-cloud-static/Brixton.SR6/#_circuit_breaker_hystrix_clients