Skip to main content

This version of the product is no longer supported, and this documentation is no longer updated regularly. See the latest version of this content.Opens in a new tab

SYS.Stats.Routine

class SYS.Stats.Routine extends SYS.WSMon.wsResource

This class represents system metrics captured for routines. 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.Routine).Sample()
  w ref.RtnCommands ; display number of routine commands executed
  
System stats for Routine activity

Property Inventory

Method Inventory

Properties

property RtnCallsLocal as %Integer;
The count of all routine calls where the routine is stored locally.
Property methods: RtnCallsLocalDisplayToLogical(), RtnCallsLocalGet(), RtnCallsLocalIsValid(), RtnCallsLocalLogicalToDisplay(), RtnCallsLocalNormalize(), RtnCallsLocalSet(), RtnCallsLocalXSDToLogical()
property RtnCallsRemote as %Integer;
The count of all routine calls where the routine is stored remotely.
Property methods: RtnCallsRemoteDisplayToLogical(), RtnCallsRemoteGet(), RtnCallsRemoteIsValid(), RtnCallsRemoteLogicalToDisplay(), RtnCallsRemoteNormalize(), RtnCallsRemoteSet(), RtnCallsRemoteXSDToLogical()
property RtnCommands as %Integer;
The count of all routine commands executed on the system.
Property methods: RtnCommandsDisplayToLogical(), RtnCommandsGet(), RtnCommandsIsValid(), RtnCommandsLogicalToDisplay(), RtnCommandsNormalize(), RtnCommandsSet(), RtnCommandsXSDToLogical()
property RtnFetchLocal as %Integer;
The number of times that local routines were fetched from disk into buffers (or saved to disk)
Property methods: RtnFetchLocalDisplayToLogical(), RtnFetchLocalGet(), RtnFetchLocalIsValid(), RtnFetchLocalLogicalToDisplay(), RtnFetchLocalNormalize(), RtnFetchLocalSet(), RtnFetchLocalXSDToLogical()
property RtnFetchRemote as %Integer;
The number of times that remote routines were fetched from disk into buffers (or saved to disk)
Property methods: RtnFetchRemoteDisplayToLogical(), RtnFetchRemoteGet(), RtnFetchRemoteIsValid(), RtnFetchRemoteLogicalToDisplay(), RtnFetchRemoteNormalize(), RtnFetchRemoteSet(), RtnFetchRemoteXSDToLogical()
property RtnLines as %Integer;
The count of all routine lines executed on the system. NOTE: This property is deprecated, line counts are no longer available and this actually returns the RtnCommands. It is left here for backwards compatibility, but should no longer be used.
Property methods: RtnLinesDisplayToLogical(), RtnLinesGet(), RtnLinesIsValid(), RtnLinesLogicalToDisplay(), RtnLinesNormalize(), RtnLinesSet(), RtnLinesXSDToLogical()

Methods

classmethod Sample() as SYS.Stats.Global
Instantiate the class and fill in current values for all properties.

Inherited Members

Inherited Methods

FeedbackOpens in a new tab