persistent class %WebStress.Errors
extends %Persistent, %XML.Adaptor
property ErrorNumber
as %Integer;
property ErrorStatus
as %Integer(DISPLAYLIST=",OK,Warning,Fatal",VALUELIST=",0,1,2");
property ErrorTS
as %TimeStamp [ InitialExpression = $zdt($horolog,3) ];
property ErrorText
as %String(MAXLEN=255,TRUNCATE=1);
property Process
as %String(TRUNCATE=1);
property RunID
as %Integer;
property ScriptID
as %Integer;
property Session
as %Integer;
property SystemIdentifier
as %String(MAXLEN=200);
property TestID
as %Integer;
property URLNumber
as %Integer;
property URLPath
as %String(MAXLEN=255,TRUNCATE=1);
property URLVerb
as %String(TRUNCATE=1);
query ShowAll()
SQL Query
:
SELECT ID,ErrorStatus,ErrorText,Process,RunID,ScriptID,SystemIdentifier,TestID,URLNumber,URLPath,URLVerb,ErrorTS FROM Errors
index (Main on TestID,RunID,ScriptID,SystemIdentifier,ErrorStatus,ErrorNumber) [IdKey,PrimaryKey,Unique];