Skip to content

Commit 2d360ef

Browse files
committed
Merge branch '2.2.x'
Closes gh-20897
2 parents ed596a3 + ab2df43 commit 2d360ef

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spring-boot-project/spring-boot-docs/src/docs/asciidoc/production-ready-features.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ Actuator endpoints let you monitor and interact with your application.
4848
Spring Boot includes a number of built-in endpoints and lets you add your own.
4949
For example, the `health` endpoint provides basic application health information.
5050

51-
Each individual endpoint can be <<production-ready-endpoints-enabling-endpoints, enabled or disabled>>.
52-
This controls whether or not the endpoint is created and its bean exists in the application context.
53-
To be remotely accessible an endpoint also has to be <<production-ready-endpoints-exposing-endpoints, exposed via JMX or HTTP>>.
54-
Most applications choose HTTP, where the ID of the endpoint along with a prefix of `/actuator` is mapped to a URL.
51+
Each individual endpoint can be <<production-ready-endpoints-enabling-endpoints, enabled or disabled>> and <<production-ready-endpoints-exposing-endpoints, exposed (made remotely accessible) over HTTP or JMX>>.
52+
An endpoint is considered to be available when it is both enabled and exposed.
53+
The built-in endpoints will only be auto-configured when they are available.
54+
Most applications choose exposure via HTTP, where the ID of the endpoint along with a prefix of `/actuator` is mapped to a URL.
5555
For example, by default, the `health` endpoint is mapped to `/actuator/health`.
5656

5757
The following technology-agnostic endpoints are available:

0 commit comments

Comments
 (0)