Application Healthcheck Endpoint

Every Oracle Health Insurance application exposes an Application Healthcheck Endpoint. Access this endpoint without authentication. It provides the basic information (JSON document) about the deployment and state of the Oracle Health Insurance application. If the application is running, it is UP. By default, this endpoint is available at:

<http://<host>:<port>/health.

It is possible to change this URL context root by changing the deployment plan of the application’s Healthcheck WEB module.

Here is an example response document below.

{
  "environment": "qatest"
, "status": "UP"
}

The health endpoint can return several statuses:

  1. 200: The node is healthy

  2. 429: The node is busy with existing requests and should not be presented more work.