Returns the rollup capabilities of all jobs inside of a rollup index (for example, the index where rollup data is stored) Technical preview
Path parameters
-
Data stream or index to check for rollup capabilities. Wildcard (
*
) expressions are supported.
GET /{index}/_rollup/data
curl \
-X GET http://api.example.com/{index}/_rollup/data
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"
}
]
}
}