无法在Spring Cloud中获取/hystrix.stream

时间:2016-11-06 09:41:27

标签: spring-cloud hystrix spring-cloud-netflix

我创建了一个微服务,其中包含以下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);
    }
}

2 个答案:

答案 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