persistent class %WebStress.Calls
extends %Persistent, %XML.Adaptor
property CharactersReceived
as %Integer;
property CharactersSent
as %Integer;
property Generator
as %String(TRUNCATE=1);
property HttpStatusCode
as %Integer;
property Iteration
as %Integer;
property Path
as %String(TRUNCATE=1);
property Process
as %String(TRUNCATE=1);
property RecordedTime
as %String(TRUNCATE=1);
property RunID
as %Integer;
property Script
as %String(TRUNCATE=1);
property Session
as %Integer;
property TestID
as %String(TRUNCATE=1);
property TimeToFirstCharacter
as %Integer;
property TimeToLastCharacter
as %Integer;
property URL
as %Integer;
property Verb
as %String(TRUNCATE=1);
property WebServer
as %String(TRUNCATE=1);
query GetData(testID As %String, runID As %Integer)
SQL Query
:
SELECT Script,Generator,Process,Session,WebServer,Iteration,URL,Verb,Path,HttpStatusCode,CharactersSent,CharactersReceived,TimeToFirstCharacter,TimeToLastCharacter,RecordedTime FROM %WebStress.Calls
WHERE (TestID = :testID AND RunID = :runID)
ORDER BY Script,Generator,Process,Session,WebServer,Iteration,URL
index (Main on TestID,RunID,Script,Generator,WebServer,Process,Session,Iteration,URL) [IdKey,PrimaryKey,Unique];