Health

Endpoints for retrieving information about the application health.

Endpoints for retrieving information about the application health.

Base URL: /health

GET /health

Returns the information about the application.

Example Request

GET /health
Host: localhost:8080

Example Response

{
  "status": "UP",
  "details": {
    "applications": {
      "name": "applications",
      "status": "UP",
      "details": {
        "basic-word-count-topology-0-3": {
          "status": "UP",
          "details": {
            "state": "RUNNING"
          }
        }
      }
    }
  }
}
Last modified March 3, 2021: docs(site): update docs for 0.9.x (ca3e155b)