persistent class Ens.Activity.Data.Days
extends %Persistent, %XML.Adaptor
property HostName
as %String(MAXLEN=128,TRUNCATE=1) [ Required ];
Business host name (configuration item name).
property HostType
as %String;
Business host type: 1=Service, 2=Process, 3=Operation.
property Instance
as %String(MAXLEN=128,TRUNCATE=1) [ Required ];
Full instance name in format SystemName:InstanceName.
property Namespace
as %String(MAXLEN=128,TRUNCATE=1) [ Required ];
Namespace name.
property Period
as %Integer [ Transient ];
property SiteDimension
as %String(MAXLEN=128,TRUNCATE=1);
property TimeSlot
as %TimeStamp [ Required ];
Timestamp corresponding to the beginning of the time slot, in source time.
property TimeSlotUTC
as %TimeStamp [ Required ];
Timestamp corresponding to the beginning of the time slot, in UTC.
property TotalCount
as %Integer;
Total message count for the time slot.
property TotalDuration
as %Numeric(SCALE=3);
Sum of the individual durations (processing times), for all messages within the time slot.
property TotalDurationSquare
as %Numeric(SCALE=6);
Sum of the squares of the individual durations (sum of duration**2), for all messages within the time slot.
property TotalQueueDuration
as %Numeric(SCALE=3);
Sum of the time waiting in queue, for all messages within the time slot.
index (i1 on Instance,Namespace,SiteDimension,HostName,TimeSlot);
index (i2 on TimeSlot);
index (i3 on Instance,Namespace,SiteDimension,HostName,TimeSlotUTC);
index (i4 on TimeSlotUTC);
index (i5 on SiteDimension);