-
Notifications
You must be signed in to change notification settings - Fork 24.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
4 changed files
with
206 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
[[cat-tasks]] | ||
=== cat task management API | ||
++++ | ||
<titleabbrev>cat task management</titleabbrev> | ||
++++ | ||
|
||
beta::[The cat task management API is new and should still be considered a beta feature. The API may change in ways that are not backwards compatible.] | ||
|
||
Returns information about tasks currently executing in the cluster, | ||
similar to the <<tasks,task management>> API. | ||
|
||
|
||
[[cat-tasks-api-request]] | ||
==== {api-request-title} | ||
|
||
`GET /_cat/_tasks/<task_id>` | ||
|
||
`GET /_cat/_tasks` | ||
|
||
|
||
[[cat-tasks-api-desc]] | ||
==== {api-description-title} | ||
|
||
The cat task management API returns information | ||
about tasks currently executing | ||
on one or more nodes in the cluster. | ||
It is a more compact view | ||
of the JSON <<tasks,task management>> API. | ||
|
||
|
||
[[cat-tasks-api-path-params]] | ||
==== {api-path-parms-title} | ||
|
||
include::{docdir}/rest-api/common-parms.asciidoc[tag=task-id] | ||
|
||
|
||
[[cat-tasks-api-query-params]] | ||
==== {api-query-parms-title} | ||
|
||
include::{docdir}/rest-api/common-parms.asciidoc[tag=actions] | ||
|
||
include::{docdir}/rest-api/common-parms.asciidoc[tag=detailed] | ||
|
||
include::{docdir}/rest-api/common-parms.asciidoc[tag=http-format] | ||
|
||
include::{docdir}/rest-api/common-parms.asciidoc[tag=group-by] | ||
|
||
include::{docdir}/rest-api/common-parms.asciidoc[tag=cat-h] | ||
|
||
include::{docdir}/rest-api/common-parms.asciidoc[tag=help] | ||
|
||
include::{docdir}/rest-api/common-parms.asciidoc[tag=node-id-query-parm] | ||
|
||
include::{docdir}/rest-api/common-parms.asciidoc[tag=timeoutparms] | ||
|
||
include::{docdir}/rest-api/common-parms.asciidoc[tag=parent-task-id] | ||
|
||
include::{docdir}/rest-api/common-parms.asciidoc[tag=cat-s] | ||
|
||
include::{docdir}/rest-api/common-parms.asciidoc[tag=wait_for_completion] | ||
|
||
include::{docdir}/rest-api/common-parms.asciidoc[tag=cat-v] | ||
|
||
|
||
[[cat-tasks-api-response-codes]] | ||
==== {api-response-codes-title} | ||
|
||
include::{docdir}/cluster/tasks.asciidoc[tag=tasks-api-404] | ||
|
||
|
||
[[cat-tasks-api-examples]] | ||
==== {api-examples-title} | ||
|
||
|
||
[[cat-tasks-api-specific-ex]] | ||
===== Get information for a specific task | ||
|
||
[source,console] | ||
---- | ||
GET _cat/tasks/oTUltX4IQMOUUVeiohTt8A:124?v | ||
---- | ||
// TEST[skip:No tasks to retrieve] | ||
|
||
The API returns the following response: | ||
|
||
[source,txt] | ||
---- | ||
action task_id parent_task_id type start_time timestamp running_time ip node | ||
cluster:monitor/tasks/lists[n] oTUltX4IQMOUUVeiohTt8A:124 oTUltX4IQMOUUVeiohTt8A:123 direct 1458585884904 01:48:24 44.1micros 127.0.0.1:9300 oTUltX4IQMOUUVeiohTt8A | ||
---- | ||
// TESTRESPONSE[skip:No tasks to retrieve] | ||
// TESTRESPONSE[non_json] | ||
|
||
|
||
[[cat-tasks-api-all-ex]] | ||
===== Get information for all tasks in a cluster | ||
|
||
[source,console] | ||
---- | ||
GET _cat/tasks?v | ||
---- | ||
// TEST[skip:No tasks to retrieve] | ||
|
||
The API returns the following response: | ||
|
||
[source,console-result] | ||
---- | ||
action task_id parent_task_id type start_time timestamp running_time ip node | ||
cluster:monitor/tasks/lists[n] oTUltX4IQMOUUVeiohTt8A:124 oTUltX4IQMOUUVeiohTt8A:123 direct 1458585884904 01:48:24 44.1micros 127.0.0.1:9300 oTUltX4IQMOUUVeiohTt8A | ||
cluster:monitor/tasks/lists oTUltX4IQMOUUVeiohTt8A:123 - transport 1458585884904 01:48:24 186.2micros 127.0.0.1:9300 oTUltX4IQMOUUVeiohTt8A | ||
---- | ||
// TESTRESPONSE[skip:No tasks to retrieve] | ||
// TESTRESPONSE[non_json] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters