ResultData

Each record represents a request/response object that is issued during a load test that stems from a recorded session object.


FieldTypeDescription
TestId (PK)uniqueidentifierGUID of the test run. If this is a SQL CE file then the value will be 00000000-0000-0000-0000-000000000000
SessionIdint32The numeric id of the recorded session object
TCNamenvarchar(32)The name of the test case the recorded session object belongs to
PrimaryIdint32The numeric id of the primary session that the recorded session object belongs to. (deprecated)
VU (PK)int32The VU id that issued the request
Agent (PK)nvarchar(32)The agent name where the request was issued
Iteration (PK)int32The iteration number where the request was issued.
Url (PK)int32The sequential request number in the iteration the request was issued
IsErrorbitIndicates if the response was flagged as an error
IsTimeoutbitIndicates if the response did not come back before the timeout period
TTFBfloatNumber of seconds it took to receive the first byte of the response
TTLBfloatNumber of seconds it took to receive the last byte of the response
RequestBytesimageThe request's bytes that include the header and body.
ResponseBytesimageThe response bytes that include the header and body.
TimersbinarySerialized timers (deprecated)
RequestOffsetintNumber of milliseconds that passed from the beginning of the test when the request was issued
ResponseOffsetintNumber of milliseconds that passed from the beginning of the test when the response was received
ClientBeginRequestdatetimeThe timestamp when StresStimulus starts issuing the request
ClientDoneRequestdatetimeThe timestamp when StresStimulus completes issuing the request
ServerGotRequestdatetimeThe timestamp when the server received the request
ServerBeginResponsedatetimeThe timestamp when the server starts issuing the response
ServerDoneResponsedatetimeThe timestamp when the server completes issuing the response
ClientDoneResponsedatetimeThe timestamp when the StresStimulus receives the response
HasMessagesbitIndicates this was a WebSocket upgrade request/response
  • No labels