GET   scenario/result/{runId}/httphits

Returns the scenario run http hits trend

URL Parameters

NameDescription
runId

Id of scenario run

Response body model example and description

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

Scenario run Id

http_hits 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.

;