Update documentation references to `/status` endpoint

See gh-11213
pull/10978/head
Vedran Pavic 7 years ago committed by Stephane Nicoll
parent a7fac3cbae
commit e88c266285

@ -34,11 +34,11 @@ For Gradle, use the following declaration:
== Features == Features
* **Endpoints** Actuator endpoints allow you to monitor and interact with your * **Endpoints** Actuator endpoints allow you to monitor and interact with your
application. Spring Boot includes a number of built-in endpoints and you can also add application. Spring Boot includes a number of built-in endpoints and you can also add
your own. For example the `status` endpoint provides basic application health your own. For example the `health` endpoint provides basic application health
information. Run up a basic application and look at `/status`. information. Run up a basic application and look at `/health`.
* **Metrics** Spring Boot Actuator provides dimensional metrics by integrating with * **Metrics** Spring Boot Actuator provides dimensional metrics by integrating with
https://micrometer.io[Micrometer]. https://micrometer.io[Micrometer].
* **Audit** Spring Boot Actuator has a flexible audit framework that will publish events * **Audit** Spring Boot Actuator has a flexible audit framework that will publish events
to an `AuditEventRepository`. Once Spring Security is in play it automatically publishes to an `AuditEventRepository`. Once Spring Security is in play it automatically publishes
authentication events by default. This can be very useful for reporting, and also to authentication events by default. This can be very useful for reporting, and also to
implement a lock-out policy based on authentication failures. implement a lock-out policy based on authentication failures.

@ -1108,7 +1108,7 @@ content into your application. Rather, pick only the properties that you need.
# ENDPOINTS WEB CONFIGURATION ({sc-spring-boot-actuator-autoconfigure}/endpoint/web/WebEndpointProperties.{sc-ext}[WebEndpointProperties]) # ENDPOINTS WEB CONFIGURATION ({sc-spring-boot-actuator-autoconfigure}/endpoint/web/WebEndpointProperties.{sc-ext}[WebEndpointProperties])
management.endpoints.web.enabled=true # Whether web endpoints are enabled management.endpoints.web.enabled=true # Whether web endpoints are enabled
management.endpoints.web.expose=info,status # Endpoint IDs that should be exposed or '*' for all. management.endpoints.web.expose=info,health # Endpoint IDs that should be exposed or '*' for all.
management.endpoints.web.exclude= # Endpoint IDs that should be excluded. management.endpoints.web.exclude= # Endpoint IDs that should be excluded.
management.endpoints.web.base-path=/actuator # Base path for Web endpoints. Relative to server.context-path or management.server.context-path if management.server.port is configured. management.endpoints.web.base-path=/actuator # Base path for Web endpoints. Relative to server.context-path or management.server.context-path if management.server.port is configured.
management.endpoints.web.path-mapping= # Mapping between endpoint IDs and the path that should expose them. management.endpoints.web.path-mapping= # Mapping between endpoint IDs and the path that should expose them.

Loading…
Cancel
Save