This class represents system metrics captured for globals. More...
Static Public Member Functions | |
SYS.Stats.Global | Sample () |
Instantiate the class and fill in current values for all properties. | |
Public Attributes | |
JrnBlocks | |
Journal Block Writes. More... | |
JrnEntries | |
Journal Entries. More... | |
LogicalBlocks | |
Logical block requests. More... | |
PhysBlockReads | |
Physical block reads. More... | |
PhysBlockWrites | |
Physical block writes. More... | |
RefLocal | |
Local global references. More... | |
RefPrivate | |
Private global references. More... | |
RefRemote | |
Remote global references. More... | |
RefUpdateLocal | |
Local global update references. More... | |
RefUpdatePrivate | |
Private global update references. More... | |
RefUpdateRemote | |
Remote global update references. More... | |
ThrottleCnt | |
Global Throttle Count. More... | |
ThrottleCur | |
Global Throttle Current. More... | |
ThrottleMax | |
Global Throttle Maximum. More... | |
UpdateCnt | |
Global Update Count. More... | |
UpdateLock | |
Global Update Lock. More... | |
WDQueueSize | |
The number of blocks waiting to be written by the Write Daemon. More... | |
WDWake | |
Indicates whether the system Write Daemon is running ('1') or not ('0') More... | |
WIJWrites | |
Physical writes to the write image journal. More... | |
This class represents system metrics captured for globals.
Each property is a different metric. A class may be instantiated by calling the class method 'Sample', and then the current value of each property can be accessed.
For example:
s ref=##class(SYS.Stats.Global).Sample() w ref.RefLocal ; display number of local global references
System stats for Global activity
JrnBlocks |
JrnEntries |
Journal Entries.
Number of journal records created, one for each database modification (Set , Kill, etc.) or transaction event (TStart, TCommit) or other event that is saved to the journal.
LogicalBlocks |
Logical block requests.
The number of database blocks read by the global database code.
PhysBlockReads |
Physical block reads.
The number of physical database blocks read from disk.
PhysBlockWrites |
Physical block writes.
The number of physical database blocks written to disk.
RefLocal |
Local global references.
The count of all global accesses to a local database.
RefPrivate |
Private global references.
The count of all process private global accesses.
RefRemote |
Remote global references.
The count of all global accesses to a remote database..
RefUpdateLocal |
Local global update references.
The count of local global references that are Sets, Kills, or $Increments.
RefUpdatePrivate |
Private global update references.
The count of private global references that are Sets, Kills, or $Increments.
RefUpdateRemote |
Remote global update references.
The count of remote global references that are Sets, Kills, or $Increments.
ThrottleCnt |
ThrottleCur |
Global Throttle Current.
The number of jobs currently counted as 'in global' for this configuration.
ThrottleMax |
UpdateCnt |
Global Update Count.
The number of users currently doing global updates (ijucnt) in this configuration.
UpdateLock |
WDQueueSize |
The number of blocks waiting to be written by the Write Daemon.
WDWake |
Indicates whether the system Write Daemon is running ('1') or not ('0')
WIJWrites |
Physical writes to the write image journal.