无法在 Spring 云中获取 /hystrix.stream
Unable to get /hystrix.stream in Spring Cloud
我创建了一个微服务,具有以下 Spring 云版本 Camden.SR2
的依赖项。 Spring 启动 1.4.1。 http://localhost:8080/hystrix.stream
没有响应。
如果我将 Spring 云版本设置为 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);
}
}
In Spring Boot 1.5.x Hystrix.stream
将仅在实际执行的调用被注释为 @HystrixCommand
时显示数据
如果您注释一个方法,它会在使用时将数据发布到流中。
更多信息:http://cloud.spring.io/spring-cloud-static/Brixton.SR6/#_circuit_breaker_hystrix_clients
对于那些正在使用 spring boot 2 的用户(我正在使用 2.0.2.RELEASE)
,hystrix.stream
端点已移至 /actuator/hystrix.stream
。
对我来说这个url有效:
http://localhost:8082/actuator/hystrix.stream
是的,通过以下 属性:
启用此执行器端点
management.endpoints.web.exposure.include=hystrix.stream
我创建了一个微服务,具有以下 Spring 云版本 Camden.SR2
的依赖项。 Spring 启动 1.4.1。 http://localhost:8080/hystrix.stream
没有响应。
如果我将 Spring 云版本设置为 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);
}
}
In Spring Boot 1.5.x Hystrix.stream
将仅在实际执行的调用被注释为 @HystrixCommand
如果您注释一个方法,它会在使用时将数据发布到流中。
更多信息:http://cloud.spring.io/spring-cloud-static/Brixton.SR6/#_circuit_breaker_hystrix_clients
对于那些正在使用 spring boot 2 的用户(我正在使用 2.0.2.RELEASE)
,hystrix.stream
端点已移至 /actuator/hystrix.stream
。
对我来说这个url有效:
http://localhost:8082/actuator/hystrix.stream
是的,通过以下 属性:
启用此执行器端点management.endpoints.web.exposure.include=hystrix.stream