Activity

Each record represents a test item's activity for every VU and every iteration. A test item can either be:

  • Transaction
  • Page
  • Test Case

Activity is counted when a single execution of the item occurs.

In most circumstances, an activity occurs one time for every VU on every iteration. However, in some instances, an activity can occur more than once, for example, when an item is inside a loop that executes multiple times on every iteration.

An activity has a start time, end time, and duration. The duration does not include any think times or delays. Duration = End Time - Start Time - Delays


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.
VUId (PK)int320-based VU number
Iteration (PK)int32The iteration number
TestCaseId (PK)uniqueidentifierThe test case Id of the item. FK TestCaseInfo.TestCaseId 
ItemId (PK)nvarchar(128)The test item Id. If this is a transaction or page then FK TransactionInfo.Id
ItemTypeint

Int value that represents the item type.

0 - transaction

1 - page

2 - test case

StartTimeOffset (PK)int32Number of milliseconds that passed from the beginning of the test when the activity started
EndTimeOffsetint32Number of milliseconds that passed from the beginning of the test when the activity ended
DurationfloatThe duration in seconds of the activity not including think times or delays.
  • No labels