Returns the capabilities of any rollup jobs that have been configured for a specific index or index pattern Technical preview
Path parameters
-
Index, indices or index-pattern to return rollup capabilities for.
_all
may be used to fetch rollup capabilities from all jobs.
GET /_rollup/data/{id}
curl \
-X GET http://api.example.com/_rollup/data/{id}
Response examples (200)
{
"additionalProperty1": {
"rollup_jobs": [
{
"fields": {
"additionalProperty1": [
{}
],
"additionalProperty2": [
{}
]
},
"index_pattern": "string",
"job_id": "string",
"rollup_index": "string"
}
]
},
"additionalProperty2": {
"rollup_jobs": [
{
"fields": {
"additionalProperty1": [
{}
],
"additionalProperty2": [
{}
]
},
"index_pattern": "string",
"job_id": "string",
"rollup_index": "string"
}
]
}
}