{{getMsg('Help_YouAreHere')}}:
/
{{page.title}}
{{page.title}}
{{$root.getMsg("downLoadHelpAsPdf")}}
{{helpModel.downloadHelpPdfDataStatus}}
JSON representation of the execution history record
The following table contains description of the task execution history record which may be included in the JSON response of the command /<TaskID>.
Field | Value Type | Description |
---|---|---|
start | number | Milliseconds between the task execution start time and Unix epoch1) |
end | number | Milliseconds between the task execution end time and Unix epoch2) |
errors | string array | Error messages |
skippedresultactions | string array | Type IDs of result actions that were not executed due to unfulfilled conditions |
executedseriescount | number | -1 if the task does not contain definition of the series |
the number of series data sets that were executed | ||
progress | number | -1 if the task is waiting for already scheduled execution |
Percentage representing progress of the task execution |
Examples
{ "start": 1491486943075, "end": 1491486943094, "errors": [], "skippedresultactions": [], "executedseriescount": 0, "progress": 100 }
{ "start": 1491486943154, "end": 1491486943159, "errors": [ "Action \"NextTask\" got an error: The task no longer exists.", "Action \"NextTask\" got an error: The task no longer exists." ], "skippedresultactions": [], "executedseriescount": 2, "progress": 100 }
{ "start": 1491486943186, "end": 1491486943190, "errors": [], "skippedresultactions": [ "result.filesystem", "result.nexttask" ], "executedseriescount": -1, "progress": 100 }