Core
API v1.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

dump #

Available since 1.4.0

Asynchronously creates a snapshot of Kuzzle's state.
Depending on the configuration of Kuzzle, this may include the following:

  • a coredump of Kuzzle running process
  • the current Kuzzle configuration
  • server logs
  • Node.js binary & properties
  • a list of OS properties
  • plugins configurations
  • usage statistics of the dumped instance

The generated directory can be used to feed a complete report to the support team.


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/admin/_dump
Method: POST

Other protocols #

Copied to clipboard!
{
  "controller": "admin",
  "action": "dump"
}

Response #

Returns an acknowledgement.

Copied to clipboard!
{
  "status": 200,
  "error": null,
  "controller": "admin",
  "action": "dump",
  "result": { 
    "acknowledge": true 
  }
}