ReportValueTypeConstants enumeration (isysmon.h)

Determines if the Histogram and Report views graph the last value sampled or a calculated value using values from the sampling period, such as the average or minimum value.

Syntax

typedef enum eReportValueTypeConstant {
  sysmonDefaultValue = 0,
  sysmonCurrentValue = 0x1,
  sysmonAverage = 0x2,
  sysmonMinimum = 0x3,
  sysmonMaximum = 0x4
} ReportValueTypeConstants;

Constants

 
sysmonDefaultValue
Value: 0
The value displayed depends on the source of the counter data. If the source of the counter data is from the current activity of the computer, sysmonCurrentValue is used. If the source of the counter data is a log file, sysmonAverage is used.
sysmonCurrentValue
Value: 0x1
The current value of the counter.
sysmonAverage
Value: 0x2
The average value of the counter over the sampling period.
sysmonMinimum
Value: 0x3
The minimum value of the counter over the sampling period.
sysmonMaximum
Value: 0x4
The maximum value of the counter over the sampling period.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Header isysmon.h

See also

SystemMonitor.ReportValueType