persistent class %WebStress.Results.PageSummary
extends %Persistent, %XML.Adaptor
property CharactersRecAvg
as %Numeric(SCALE=1);
property CharactersRecMax
as %Integer;
property CharactersRecMin
as %Integer;
property CharactersRecStdDev
as %Numeric(SCALE=1);
property CharactersRecTotal
as %Integer;
property CharactersSentAvg
as %Numeric(SCALE=1);
property CharactersSentMax
as %Integer;
property CharactersSentMin
as %Integer;
property CharactersSentStdDev
as %Numeric(SCALE=1);
property CharactersSentTotal
as %Integer;
property Generator
as %String(TRUNCATE=1);
property Path
as %String(TRUNCATE=1);
property RunID
as %Integer;
property Script
as %String(TRUNCATE=1);
property TTFCAvg
as %Numeric(SCALE=1);
property TTFCMax
as %Integer;
property TTFCMin
as %Integer;
property TTFCStdDev
as %Numeric(SCALE=1);
property TTFCTotal
as %Integer;
property TTLCAvg
as %Numeric(SCALE=1);
property TTLCMax
as %Integer;
property TTLCMin
as %Integer;
property TTLCStdDev
as %Numeric(SCALE=1);
property TTLCTotal
as %Integer;
property TestID
as %String(TRUNCATE=1);
property URL
as %Integer;
property Verb
as %String(TRUNCATE=1);
query GetData(testID As %String, runID As %Integer)
SQL Query
:
SELECT Script,Generator,URL,Verb,Path,CharactersSentMin,CharactersSentMax,CharactersSentTotal,CharactersSentAvg,CharactersSentStdDev,CharactersRecMin,CharactersRecMax,CharactersRecTotal,CharactersRecAvg,CharactersRecStdDev,TTFCMin,TTFCMax,TTFCTotal,TTFCAvg,TTFCStdDev,TTLCMin,TTLCMax,TTLCTotal,TTLCAvg,TTLCStdDev FROM PageSummary
WHERE (TestID = :testID AND RunID = :runID)
index (Main on TestID,RunID,Script,Generator,URL) [IdKey,PrimaryKey,Unique];