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
-
endDate: string(date-time)
End of the time range in the format - yyyy-MM-dd'T'HH:mm:ss'Z'
-
startDate: string(date-time)
Start of the time range in the format - yyyy-MM-dd'T'HH:mm:ss'Z'
Response
Supported Media Types
- application/json
200 Response
OK
400 Response
Invalid input
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 }