Merge pull request #11213 from vpavic:fix-docs

* pr/11213:
  Polish "Update documentation references to `/status` endpoint"
  Update documentation references to `/status` endpoint
This commit is contained in:
Stephane Nicoll 2017-11-30 11:42:40 +01:00
commit 8aeb245393
2 changed files with 4 additions and 4 deletions

View File

@ -34,11 +34,11 @@ For Gradle, use the following declaration:
== Features
* **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
your own. For example the `status` endpoint provides basic application health
information. Run up a basic application and look at `/status`.
your own. For example the `health` endpoint provides basic application health
information. Run up a basic application and look at `/actuator/health`.
* **Metrics** Spring Boot Actuator provides dimensional metrics by integrating with
https://micrometer.io[Micrometer].
* **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
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.

View File

@ -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])
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.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.