Official Plugins (Kuzzle v2.x)
Scheduler v1.x
2

This plugin is part of the Kuzzle Enterprise Plan. If you are interested, please contact us.

list #

Lists available scheduler engines.


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/_/scheduler/engines
Method: GET

Other protocols #

Copied to clipboard!
{
  "controller": "scheduler/engine",
  "action": "list",
}

Kourou #

Copied to clipboard!
kourou scheduler/engine:list

Response #

Returns an object with an engines property containing the engines list.

Copied to clipboard!
{
  "requestId": "d16d5e8c-464a-4589-938f-fd84f46080b9",
  "status": 200,
  "error": null,
  "controller": "scheduler/engine",
  "action": "list",
  "collection": null,
  "index": null,
  "result": {
    "engines": [
      {
        "index": "tenant-dana",
        "group": "commons"
      },
      {
        "index": "tenant-minsk",
        "group": "commons"
      },
    ]
  }
}