Currently /application/health is quite complex as it can display full details or only a single status based on various conditions. In our effort to revisit the actuator in Spring Boot 2, we intend to split the health endpoint in two separate endpoints:
/application/health is the existing endpoint and shows full details with no additional logic to switch to a single status
/application/status shows the status (and only that)
Both endpoints can be enabled and/or secured separately.
Currently
/application/healthis quite complex as it can display full details or only a single status based on various conditions. In our effort to revisit the actuator in Spring Boot 2, we intend to split the health endpoint in two separate endpoints:/application/healthis the existing endpoint and shows full details with no additional logic to switch to a single status/application/statusshows the status (and only that)Both endpoints can be enabled and/or secured separately.