Get processes
editGet processes
editGet processes on a host running Elastic Defend.
You must have the Process Operations privilege and at least an Enterprise license to perform this action.
Request URL
editPOST <kibana host>:<port>/api/endpoint/action/running_procs
Request body
editA JSON object with these fields:
Name | Type | Description | Required |
---|---|---|---|
|
Array (String) |
The IDs of endpoints where you want to issue this action. |
Yes |
|
Array (String) |
If this action is associated with any alerts, they can be specified here. The action will be logged in any cases associated with the specified alerts. |
No |
|
Array (String) |
The IDs of cases where the action taken will be logged. |
No |
|
String |
Attach a comment to this action’s log. The comment text will appear in associated cases. |
No |
Example requests
editGet processes on a host with an endpoint_id
value of ed518850-681a-4d60-bb98-e22640cae2a8
:
POST /api/endpoint/action/running_procs { "endpoint_ids": ["ed518850-681a-4d60-bb98-e22640cae2a8"] }
Response code
edit-
200
- Indicates a successful call.
-
403
- Indicates insufficient user privilege (Process Operations required), or unsupported license level (minimum Enterprise license required).
-
500
- General error. A response message will provide additional details.
Response payload
editA JSON object with an id
that refers to the submitted action.
Example response
edit{ "data": { "id": "233db9ea-6733-4849-9226-5a7039c7161d", "agents": ["ed518850-681a-4d60-bb98-e22640cae2a8"], "command": "running-processes", "isExpired": false, "isCompleted": true, "wasSuccessful": true, "errors": [], "startedAt": "2022-07-29T19:08:49.126Z", "completedAt": "2022-07-29T19:09:44.961Z", "outputs": { "ed518850-681a-4d60-bb98-e22640cae2a8": { "type": "json", "content": { "key": "value" } } }, "createdBy": "myuser", "comment": "", "parameters": {} } }