Skip to content

Commit e88c266

Browse files
vpavicsnicoll
authored andcommitted
Update documentation references to /status endpoint
See gh-11213
1 parent a7fac3c commit e88c266

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

spring-boot-project/spring-boot-actuator/README.adoc

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

spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1108,7 +1108,7 @@ content into your application. Rather, pick only the properties that you need.
11081108
11091109
# ENDPOINTS WEB CONFIGURATION ({sc-spring-boot-actuator-autoconfigure}/endpoint/web/WebEndpointProperties.{sc-ext}[WebEndpointProperties])
11101110
management.endpoints.web.enabled=true # Whether web endpoints are enabled
1111-
management.endpoints.web.expose=info,status # Endpoint IDs that should be exposed or '*' for all.
1111+
management.endpoints.web.expose=info,health # Endpoint IDs that should be exposed or '*' for all.
11121112
management.endpoints.web.exclude= # Endpoint IDs that should be excluded.
11131113
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.
11141114
management.endpoints.web.path-mapping= # Mapping between endpoint IDs and the path that should expose them.

0 commit comments

Comments
 (0)