Request URL

GET https://api.dotcom-monitor.com/config_api_v1/GroupStressTest/{GroupID}/result

Returns results of the tests included in the group with the specified id.

Path Parameters

Field Type Required Description
GroupID

string

true

The unique identifier for a group of load tests.

Success Response

Example response
[
    {
        "StressID": 2957,
        "StatusDesc": "Completed",
        "StatusCode": 10,
        "HasData": true,
        "RealStartTime": 1638378057000,
        "RealStartTimeDT": "12/01/2021 17:00:57.000",
        "RealStartTime_UTC": 1638367257000,
        "RealStartTime_UTCDT": "12/01/2021 14:00:57.000",
        "CompletedAt": 1638378488800,
        "CompletedAtDT": "12/01/2021 17:08:08.800",
        "CompletedAt_UTC": 1638367688000,
        "CompletedAt_UTCDT": "12/01/2021 14:08:08.000",
        "StartTime": 1638378057000,
        "StartTimeDT": "12/01/2021 17:00:57.000",
        "StartTime_UTC": 1638367257000,
        "StartTime_UTCDT": "12/01/2021 14:00:57.000",
        "FinishedTime": 1638378488800,
        "FinishedTimeDT": "12/01/2021 17:08:08.800",
        "FinishedTime_UTC": 1638367688000,
        "FinishedTime_UTCDT": "12/01/2021 14:08:08.000",
        "SessionsCount": 1575,
        "SessionsCountSucceded": 1575,
        "SessionsCountFailed": 0,
        "SessionsCountUncompleted": 0,
        "AverageDuration": 23,
        "MinDuration": 15,
        "MaxDuration": 127
    },
    {
        "StressID": 2960,
        "StatusDesc": "Completed",
        "StatusCode": 10,
        "HasData": true,
        "RealStartTime": 1638378057000,
        "RealStartTimeDT": "12/01/2021 17:00:57.000",
        "RealStartTime_UTC": 1638367257000,
        "RealStartTime_UTCDT": "12/01/2021 14:00:57.000",
        "CompletedAt": 1638378498343,
        "CompletedAtDT": "12/01/2021 17:08:18.343",
        "CompletedAt_UTC": 1638367698000,
        "CompletedAt_UTCDT": "12/01/2021 14:08:18.000",
        "StartTime": 1638378057000,
        "StartTimeDT": "12/01/2021 17:00:57.000",
        "StartTime_UTC": 1638367257000,
        "StartTime_UTCDT": "12/01/2021 14:00:57.000",
        "FinishedTime": 1638378498343,
        "FinishedTimeDT": "12/01/2021 17:08:18.343",
        "FinishedTime_UTC": 1638367698000,
        "FinishedTime_UTCDT": "12/01/2021 14:08:18.000",
        "SessionsCount": 147,
        "SessionsCountSucceded": 147,
        "SessionsCountFailed": 0,
        "SessionsCountUncompleted": 0,
        "AverageDuration": 4907,
        "MinDuration": 813,
        "MaxDuration": 26625
    }
]

 

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

StressID

int32

The unique identifier for a test that is included in the group.

StatusDesc

string

Test status description.

StatusCode

int32

Test status code.

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