Spaces method and path for this operation:
get /s/{space_id}/api/osquery/live_queries/{id}/results/{actionId}
Refer to Spaces for more information.
Get the results of a live query using the query action ID.
GET
/api/osquery/live_queries/{id}/results/{actionId}
curl \
--request GET 'https://<KIBANA_URL>/api/osquery/live_queries/3c42c847-eb30-4452-80e0-728584042334/results/609c4c66-ba3d-43fa-afdd-53e244577aa0' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"data": {
"edges": [
{
"_id": "doc1",
"_source": {
"action_id": "609c4c66-ba3d-43fa-afdd-53e244577aa0",
"agent": {
"id": "16d7caf5-efd2-4212-9b62-73dafc91fa13"
},
"osquery": {
"total_seconds": "12345"
}
}
},
{
"_id": "doc2",
"_source": {
"action_id": "609c4c66-ba3d-43fa-afdd-53e244577aa0",
"agent": {
"id": "16d7caf5-efd2-4212-9b62-73dafc91fa13"
},
"osquery": {
"total_seconds": "67890"
}
}
}
],
"total": 2
}
}