GET   scenario/result/{runId}/activeusers

Returns the scenario run active users trend

URL Parameters

NameDescription
runId

Id of scenario run

Response body model example and description

{
  "run_id": 1,
  "active_users": [
    1,
    2,
    3
  ],
  "timestamps": [
    1,
    2,
    3
  ],
  "exception": "An exception was encountered during execution: {exception details...}"
}
Name Type Description
run_id Integer

Scenario run Id

active_users Array

Array of values

timestamps Array

Array of timestamps

exception String

Any exception that arose during the function call. In case no exception was thrown this will be an empty string.

;