Skip to content

Commit

Permalink
Adjust content relating to exposing HTTP endpoint
Browse files Browse the repository at this point in the history
Resolves gh-72
  • Loading branch information
ronriley authored and dsyer committed Jan 10, 2020
1 parent 8b8f2cb commit 2675673
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ You will see a new set of RESTful end points added to the application. These are

They include: errors, http://localhost:8080/actuator/health[actuator/health], http://localhost:8080/actuator/info[actuator/info], http://localhost:8080/actuator[actuator].

NOTE: There is also a `/actuator/shutdown` endpoint, but it's only visible by default via JMX. To https://docs.spring.io/spring-boot/docs/{spring_boot_version}/reference/htmlsingle/#production-ready-endpoints-enabling-endpoints[enable it as an HTTP endpoint], add
`management.endpoints.shutdown.enabled=true` to your `application.properties` file.
NOTE: There is also a `/actuator/shutdown` endpoint, but it's not visible by default. To http://docs.spring.io/spring-boot/docs/{spring_boot_version}/reference/htmlsingle/#production-ready-endpoints-enabling-endpoints[enable it as an HTTP endpoint], add
`management.endpoints.web.exposure.include=health,info,shutdown` to your `application.properties` file.

It's easy to check the health of the app.

Expand Down

0 comments on commit 2675673

Please sign in to comment.