From 444584ce192858fc72a528b105cb36cf9b13d012 Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Tue, 5 Jun 2018 11:06:29 -0400 Subject: [PATCH] Update /hystrix.stream docs for Boot 2.0. Fixes #2785 --- docs/src/main/asciidoc/spring-cloud-netflix.adoc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/src/main/asciidoc/spring-cloud-netflix.adoc b/docs/src/main/asciidoc/spring-cloud-netflix.adoc index b12975436..ab917ccfb 100644 --- a/docs/src/main/asciidoc/spring-cloud-netflix.adoc +++ b/docs/src/main/asciidoc/spring-cloud-netflix.adoc @@ -572,8 +572,9 @@ The state of the connected circuit breakers are also exposed in the `/health` en === Hystrix Metrics Stream -To enable the Hystrix metrics stream, include a dependency on `spring-boot-starter-actuator`. -Doing so exposes the `/hystrix.stream` as a management endpoint, as shown in the following example: +To enable the Hystrix metrics stream, include a dependency on `spring-boot-starter-actuator` and set +`management.endpoints.web.exposure.include: hystrix.stream`. +Doing so exposes the `/actuator/hystrix.stream` as a management endpoint, as shown in the following example: [source,xml] ----