Indexes
Indexes are the containers your ingested log events live in, referenced by @index / @index_id in queries. You can list and read indexes with the Scanner API.
List indexes
Name
Type
Description
curl -G $API_BASE/v1/index \
--data-urlencode "tenant_id=$TENANT_ID" \
--data-urlencode "pagination[page_size]=100" \
-H "Authorization: Bearer $API_KEY"{
"data": {
"indexes": [
{
"id": "00000000-0000-0000-0000-000000000001",
"name": "cloudtrail_logs",
"description": "AWS CloudTrail events"
}
]
},
"pagination": {
"next_page_token": null
}
}Get an index
Name
Type
Description
Response object reference
Index
Field
Type
Description
Last updated
Was this helpful?