UnifiedViews Method - Request all Pipeline Executions
UnifiedViews Method - Request all Pipeline Executions
Description |
---|
Request all pipelines' execution status. |
URL: http://{server}/master/api/1/pipelines/{pipeline_id}/executions/
application/json
Supported Method |
---|
GET |
application/json
Status: 200 - OK
Returns execution entity:
Attribute | Description |
---|---|
Possible status | QUEUED, RUNNING, CANCELLING, CANCELLED, FAILED, FINISHED_SUCCESS, FINISHED_WARNING |
orderNumber | The priority in the queue. |
start , end | Real times of pipeline execution start and end. |
schedule | id of schedule entity which triggered the execution, if any (null when pipeline execution was created manually by user) |
silentMode | (from Java documentation) If true, pipelines run in silent mode and the end of the execution can't be used to trigger a schedule. |
stop | (from Java documentation) True if pipeline should or has been stopped on user request. |
lastChange | (from Java documentation) Timestamp when this execution was last changed. |
[ { id: 1, status: "FAILED", isDebugging: false, orderNumber: 55, start: "2014-08-08T15:15:15.555Z", end: "2014-08-08T15:15:15.555Z", schedule: 15, stop: false, lastChange: "2014-08-08T15:15:15.555Z" }, { id: 2, status: "RUNNING", isDebugging: true, orderNumber: 98, start: "2014-08-08T15:15:15.555Z", end: "2014-08-08T15:15:15.555Z", schedule: null, stop: false, lastChange: "2014-08-08T15:15:15.555Z" }, { id: 3, status: "FINISHED_SUCCESS", isDebugging: false, orderNumber: 1, start: "2014-08-08T15:15:15.555Z", end: "2014-08-08T15:15:15.555Z", schedule: 12, stop: false, lastChange: "2014-08-08T15:15:15.555Z" } ]