GET testresultdata/jobstatus/{jobId}
Returns the loadtest job status report
URL Parameters
Name | Description |
---|---|
jobId | Id of loadtest job |
Response body model example and description
{ "id": 153758, "message": "Job ongoing", "completed": true, "error": false, "aborted": false, "active": true, "result_id": 1245, "exception": "An exception was encountered during execution: {exception details...}" }
Name | Type | Description |
---|---|---|
id | Integer |
The ID of the requested job |
message | String |
The status of the job |
completed | Boolean |
Whether or not the job has finished with or without an error |
error | Boolean |
Whether the job has finished with an error, e.g. the job could not be transmitted to the load testing agents |
aborted | Boolean |
Whether the job was aborted |
active | Boolean |
Whether the job is still active. A job is active as long as it has not been deleted from LTP. |
result_id | Integer |
The id of job test result. Null if job has no test result. |
exception | String |
Any exception that arose during the function call. In case no exception was thrown this will be an empty string. |