GET testresultdata/{testResultId}/activeusers
Returns the loadtest result active users trend
URL Parameters
| Name | Description |
|---|---|
| testResultId | Id of loadtest result |
Response body model example and description
{
"test_result_id": 64442,
"active_users": [
1,
2,
3
],
"timestamps": [
0.9,
1.9,
2.9
],
"exception": "An exception was encountered during execution: {exception details...}"
}
| Name | Type | Description |
|---|---|---|
| test_result_id | Integer |
The ID of the test result |
| active_users | Array |
The array of active users trend values |
| timestamps | Array |
The array of timestamps for active users trend |
| exception | String |
Any exception that arose during the function call. In case no exception was thrown this will be an empty string. |