Request URL

GET https://api.dotcom-monitor.com/config_api_v1/StressTest/{id}/Result

Get a test result by ID.

Path Parameters

Field Type Required Description
id

string

true

The unique id of a load test. Refer to StressHistory_Seq_ID to select an id.

Success Response

Example 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
}

Time results are provided in UTC and in the time zone set within the Dotcom-Monitor account (see in Account settings > General >Time Zone). Time parameters in results are specified in Unix Time.

Field Type Description

HasData

bool

The field contains “true” if the test results are available.
Example:
"HasData" : true
RealStartTime/RealStartTime_UTC long
The field represents the time when the load emulation started (the first request was sent).
Example:
"RealStartTime_UTC" : 1569253449000
CompletedAt/CompletedAt_UTC  long
The field represents the time when the last request was sent.
Example:
"CompletedAt_UTC" : 1569253884030
StartTime/StartTime_UTC long
The time when the test was run by a user.
Example:
"StartTime_UTC" : 1569253449000
FinishedTime/FinishedTime_UTC long
The time when the last response was registered.
Example:
"FinishedTime_UTC" : 1569253884030
SessionsCount ulong
The total number of sessions started by concurrent users.
Example:
"SessionsCount" : 4705
SessionsCountSucceded ulong
The number of sessions that were run without errors.
Example:
"SessionsCountSucceded" : 4705
SessionsCountFailed ulong
The number of sessions with failures.
Example:
"SessionsCountFailed" : 0
SessionsCountUncompleted int
The number of sessions that were not completed prior to the end of the test.
Example:
"SessionsCountUncompleted" : 0
AverageDuration double
The average duration of transactions in seconds (time for browser initialization and user behavior delays are not included).
Example:
"AverageDuration" : 1.418264187035069
MinDuration int
The minimum duration of the test transactions in seconds.
Example:
"MinDuration" : 951
MaxDuration int
The maximum duration of the test transactions in seconds.
Example:
"MaxDuration" : 3946