Get a test result by ID.
GET URI
/StressTest/{id}/Result
Refer to StressHistory_Seq_ID to select the test ID.
Example of a Successful Response
{"HasData":true,"RealStartTime":1569253449000,"RealStartTime_UTC":1569275049000,"CompletedAt":1569253884000,"CompletedAt_UTC":1569275484000,"StartTime":1569253449000,"StartTime_UTC":1569275049000,"FinishedTime":1569253884000,"FinishedTime_UTC":1569275484000,"SessionsCount":4705,"SessionsCountSucceded":4705,"SessionsCountFailed":0,"SessionsCountUncompleted":0,"AverageDuration":1418,"MinDuration":951,"MaxDuration":3946}
Field | Type | Description | |
---|---|---|---|
HasData |
bool |
The field contains “true” if the test results are available.
Example:
|
|
RealStartTime/RealStartTime_UTC | long |
The field represents the time when the load emulation started (the first request was sent).
Example:
|
|
CompletedAt/CompletedAt_UTC | long |
The field represents the time when the last request was sent.
Example:
|
|
StartTime/StartTime_UTC | long |
The time when the test was run by a user.
Example:
|
|
FinishedTime/FinishedTime_UTC | long |
The time when the last response was registered.
Example:
|
|
SessionsCount | ulong |
The total number of sessions started by concurrent users.
Example:
|
|
SessionsCountSucceded | ulong |
The number of sessions that were run without errors.
Example:
|
|
SessionsCountFailed | ulong |
The number of sessions with failures.
Example:
|
|
SessionsCountUncompleted | int |
The number of sessions that were not completed prior to the end of the test.
Example:
|
|
AverageDuration | double |
The average duration of transactions in seconds (time for browser initialization and user behavior delays are not included).
Example:
|
|
MinDuration | int |
The minimum duration of the test transactions in seconds.
Example:
|
|
MaxDuration | int |
The maximum duration of the test transactions in seconds.
Example:
|