Core
API v2.x
2

healthCheck #

Returns the status of Kuzzle and it's internal services.


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/_healthcheck[?services]
Method: GET

Other protocols #

Copied to clipboard!
{
  "controller": "server",
  "action": "healthCheck",
  // optional
  "services" : "<services>"
}

Optional: #

  • services : You can specify which services you want the status of.(eg: "storageEngine,memoryStorage")

Response #

Returns the status of each services.

  • internalCache : used by Kuzzle to cache internal data, such as authentication tokens, documents followed by real-time subscriptions, active paginated search queries, API usage statistics or cluster state
  • memoryStorage : memory cache managed by Kuzzle's memoryStorage API
  • storageEngine: Underlying storage layer

The status can either be green, yellow or red.

Copied to clipboard!
{
  "status": 200,
  "error": null,
  "action": "healthCheck",
  "controller": "server",
  "collection": null,
  "index": null,
  "volatile": null
  "requestId": "<unique request identifier>",
  "result": {
    "status": "<status>",
      "services": {
        "internalCache" : "<status>",
        "memoryStorage" : "<status>",
        "storageEngine" : "<status>"
      }
}