Actuator Health and Info Endpoints
Let’s learn about the health and info endpoints of the Spring Boot Actuator.
We'll cover the following...
Expose /health
endpoint
As we’ve already discussed, the actuator endpoint for /health
is exposed on both Web and JMX. However, we can still control exposing the /health
endpoint on the Web. Let’s use the management.endpoints.web.exposure.include
property and set it with the ...