Closed
Description
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.