SYS.History.Database
Class SYS.History.Database Extends %SerialObject [ System = 3 ]
A list of Database properties for the SysData interval collection class
For details, see History Monitor.
Properties
FileSize
Property FileSize As %Numeric;
Size of each database file (in MB)
FreeSpace
Property FreeSpace As %Numeric;
Freespace available in each database file (in MB)
NOTE: this value is fetched from the %Monitor.System.Freespace class samples, so that must be "active" or this will be blank.
Methods
PropList
ClassMethod PropList() As %String [ Internal ]
Fetch a list of detail properties for this class for Hourly and Daily summaries
SetSummary
ClassMethod SetSummary(ByRef Function As %String, Period As %String) As %Status
Configure the summary methods for this class for either the Hourly or Daily summaries. This is a comma-delimited list of functions to use for the summary. The available functions are Average, Maximum (high-water mark), Minimum (lowest value), Standard Deviation, Median, and Total. These are abbreviated in the 'Function' argument as "Avg", "Max", "Min", StDev", Med", and "Tot". If nothing is specified, the default is "Avg,Max,StDev". You may also specify the string "None" for a summary period to disable that summary.
A null 'Function' argument will return the current summary setting in the 'Function' variable.
The 'Period' argument can be either "Hourly" or "Daily".