...
The status returned is one of below:
- UP → The - The component or subsystem is working as expected.
- DOWN → The - The component is not working.
- OUT_OF_SERVICE → The - The component is out of service temporarily.
- UNKNOWN → The - The component state is unknown.
The following separate components are configured for health status check
- /manage/health/db - provides information on database type and connectivity state
- /manage/health/diskSpace - provides information on current disk space usage and threshold configured
- /manage/health/ping - ability to be pinged (always UP)
...
The following endpoints are exposed to provide readiness and liveness probes for containerized application management
systems like kubernetes
- /manage/health/readiness - indicates the application completed the initialization state and ready to accept the requests
- /manage/health/liveness - indicates the application is up and running, no need to restart the container
...