Get the summary of all job executions within a time range

get

/iam/governance/selfservice/api/v1/scheduler/history/summary

Returns a summary of all executions in a specified time period.

Request

Query Parameters
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : Summary
Type: object
Show Source

400 Response

Invalid input
Back to Top

Examples

The following example shows how to retrieve the summary of all job executions within a time range by submitting the GET request using cURL. The information shown here is against a pseudo system and serves as a prototype.

cURL Example

curl -i -X GET -u username:password /
--header 'Accept: application/json' /
--header 'Content-Type: application/json' /
'http://pseudo.com/iam/governance/selfservice/api/v1/scheduler/history/summary'

Example of Response Body

The following example shows the JSON response for a reqeust to retrieve the summary of all job executions within a time range:

{
    "failedJobs": 0,
    "runningJobs": 0,
    "interruptedJobs": 0,
    "stoppedJobs": 2315
}
Back to Top