PERF_COUNTER_INFO structure (perflib.h)
Defines information about a counter that a provider uses. The CTRPP tool automatically generates this structure based on the schema you specify.
Syntax
typedef struct _PERF_COUNTER_INFO {
ULONG CounterId;
ULONG Type;
ULONGLONG Attrib;
ULONG Size;
ULONG DetailLevel;
LONG Scale;
ULONG Offset;
} PERF_COUNTER_INFO, *PPERF_COUNTER_INFO;
Members
CounterId
Identifier that uniquely identifies the counter within the counter set.
Type
Specifies the type of counter. For possible counter types, see Counter Types in the Windows 2003 Deployment Guide.
Attrib
One or more attributes that indicate how to display this counter.
The possible values are:
The attributes PERF_ATTRIB_NO_GROUP_SEPARATOR, PERF_ATTRIB_DISPLAY_AS_REAL, and PERF_ATTRIB_DISPLAY_AS_HEX are not mutually exclusive. If you specify all three attributes, precedence is given to the attributes in the order given.
Size
Size, in bytes, of this structure.
DetailLevel
Specify the target audience for the counter.
Possible values are:
Value | Meaning |
---|---|
|
You can display the counter to any level of user. |
|
The counter is complicated and should be displayed only to advanced users. |
Scale
Scale factor to apply to the counter value. Valid values range from –10 through 10. Zero if no scale is applied. If this value is zero, the scale value is 1; if this value is 1, the scale value is 10; if this value is –1, the scale value is .10; and so on.
Offset
Byte offset from the beginning of the PERF_COUNTERSET_INSTANCE block to the counter value.
Remarks
This structure is contained within a PERF_COUNTERSET_INFO or PERF_COUNTERSET_INSTANCE block.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows Vista [desktop apps only] |
Minimum supported server | Windows Server 2008 [desktop apps only] |
Header | perflib.h |