Search + K

Command Palette

Search for a command to run...

Sign In

Get rollup job information

Deprecated
GET /_rollup/job/{id}
Copy endpoint

Get the configuration, stats, and status of rollup jobs.

NOTE: This API returns only active (both STARTED and STOPPED) jobs. If a job was created, ran for a while, then was deleted, the API does not return any details about it. For details about a historical rollup job, the rollup capabilities API may be more useful.

Required authorization

  • Cluster privileges: monitor_rollup

Parameters

path Path Parameters

Name Type
id required

Identifier for the rollup job. If it is _all or omitted, the API returns all rollup jobs.

type TypesId = string

Responses

200 application/json
{ jobs: RollupGetJobsRollupJob
interface RollupGetJobsRollupJob {
config: RollupGetJobsRollupJobConfiguration;
stats: RollupGetJobsRollupJobStats;
status: RollupGetJobsRollupJobStatus;
}
[]
; }