Get all processes
GET {{baseUrl}}/api/v2/processes?search=<string>&tags=<string>&from=<long>&to=<long>&page[limit]=1000&page[cursor]=<string>
Get all processes for your organization.
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
search | string | String to search processes by. | |
tags | string | Comma-separated list of tags to filter processes by. | |
from | string | Unix timestamp (number of seconds since epoch) of the start of the query window. | |
If not provided, the start of the query window will be 15 minutes before the to timestamp. If neither | |||
from nor to are provided, the query window will be [now - 15m, now] . | |||
to | string | Unix timestamp (number of seconds since epoch) of the end of the query window. | |
If not provided, the end of the query window will be 15 minutes after the from timestamp. If neither | |||
from nor to are provided, the query window will be [now - 15m, now] . | |||
page[limit] | number | Maximum number of results returned. | |
page[cursor] | string | String to query the next page of results. | |
This key is provided with each valid response from the API in meta.page.after . |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Accept | string |
RESPONSES
status: OK
{"data":[{"attributes":{"cmdline":"\u003cstring\u003e","host":"\u003cstring\u003e","pid":"\u003clong\u003e","ppid":"\u003clong\u003e","start":"\u003cstring\u003e","tags":["\u003cstring\u003e","\u003cstring\u003e"],"timestamp":"\u003cstring\u003e","user":"\u003cstring\u003e"},"id":"\u003cstring\u003e","type":"process"},{"attributes":{"cmdline":"\u003cstring\u003e","host":"\u003cstring\u003e","pid":"\u003clong\u003e","ppid":"\u003clong\u003e","start":"\u003cstring\u003e","tags":["\u003cstring\u003e","\u003cstring\u003e"],"timestamp":"\u003cstring\u003e","user":"\u003cstring\u003e"},"id":"\u003cstring\u003e","type":"process"}],"meta":{"page":{"after":"\u003cstring\u003e","size":"\u003cinteger\u003e"}}}