Win32_PerfRawData_PerfOS_System class
The Win32_PerfRawData_PerfOS_System raw performance data class represents raw data counters that apply to more than one instance of a component processor on the computer.
This class represents the System object in System Monitor. The original data source is the PerfOS performance library. The corresponding formatted data class is Win32_PerfFormattedData_PerfOS_System. Data is dynamically provided for this class from the performance library object by the WmiPerfInst provider.
Windows Server 2003, Windows XP, and Windows 2000: WMI data for this class is supplied by the Performance Counter Provider.
The following syntax is simplified from MOF code and shows all inherited properties, including the Frequency and Timestamp properties required for class display in System Monitor. For more information about required property qualifiers, see Property Qualifiers for Performance Counter Classes. For more information about CounterType values, see WMI Performance Counter Types.
Syntax
class Win32_PerfRawData_PerfOS_System : Win32_PerfRawData
{
uint32 AlignmentFixupsPerSec;
string Caption;
uint32 ContextSwitchesPerSec;
string Description;
uint32 ExceptionDispatchesPerSec;
uint64 FileControlBytesPerSec;
uint32 FileControlOperationsPerSec;
uint32 FileDataOperationsPerSec;
uint64 FileReadBytesPerSec;
uint32 FileReadOperationsPerSec;
uint64 FileWriteBytesPerSec;
uint32 FileWriteOperationsPerSec;
uint32 FloatingEmulationsPerSec;
uint64 Frequency_Object;
uint64 Frequency_PerfTime;
uint64 Frequency_Sys100NS;
string Name;
uint32 PercentRegistryQuotaInUse;
uint32 PercentRegistryQuotaInUse_Base;
uint32 Processes;
uint32 ProcessorQueueLength;
uint32 SystemCallsPerSec;
uint64 SystemUpTime;
uint32 Threads;
uint64 Timestamp_Object;
uint64 Timestamp_PerfTime;
uint64 Timestamp_Sys100NS;
};
Members
The Win32_PerfRawData_PerfOS_System class has these types of members:
Properties
The Win32_PerfRawData_PerfOS_System class has these properties.
- AlignmentFixupsPerSec
-
- Data type: uint32
- Access type: Read-only
- Qualifiers: DisplayName ("Alignment Fixups/sec") , CounterType (272696320) , DefaultScale (0) , PerfDetail (400)
Rate of alignment faults fixed by the system. This property displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
- Caption
-
- Data type: string
- Access type: Read-only
Short textual description for the statistic or metric. This property is inherited from CIM_StatisticalInformation.
- ContextSwitchesPerSec
-
- Data type: uint32
- Access type: Read-only
- Qualifiers: DisplayName ("Context Switches/sec") , CounterType (272696320) , DefaultScale (-2) , PerfDetail (200)
Rate of switches from one thread to another. Thread switches can occur either inside of a single process or across processes. A thread switch can be caused either by one thread asking another for information, or by a thread being preempted by another, higher priority thread becoming ready to run. The operating system uses process boundaries for subsystem protection in addition to the traditional protection of user and privileged modes. These subsystem processes provide additional protection. Therefore, some work done by the operating system on behalf of an application appears in other subsystem processes in addition to the privileged time in the application. Switching to the subsystem process causes one context switch in the application thread. Switching back causes another context switch in the subsystem thread.
- Description
-
- Data type: string
- Access type: Read-only
Textual description of the statistic or metric. This property is inherited from CIM_StatisticalInformation.
- ExceptionDispatchesPerSec
-
- Data type: uint32
- Access type: Read-only
- Qualifiers: DisplayName ("Exception Dispatches/sec") , CounterType (272696320) , DefaultScale (0) , PerfDetail (400)
Rate of exceptions dispatched by the system. This property displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
- FileControlBytesPerSec
-
- Data type: uint64
- Access type: Read-only
- Qualifiers: DisplayName ("File Control Bytes/sec") , CounterType (272696576) , DefaultScale (-3) , PerfDetail (400)
Overall rate at which bytes are transferred for all file system operations that are neither read nor write operations, including file system control requests and requests for information about device characteristics or status. This property displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
For more information about using uint64 values in scripts, see Scripting in WMI.
- FileControlOperationsPerSec
-
- Data type: uint32
- Access type: Read-only
- Qualifiers: DisplayName ("File Control Operations/sec") , CounterType (272696320) , DefaultScale (0) , PerfDetail (200)
Combined rate of file system operations that are neither read nor write operations, such as file system control requests and requests for information about device characteristics or status. This property is the inverse of the FileDataOperationsPerSec property. This property displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
- FileDataOperationsPerSec
-
- Data type: uint32
- Access type: Read-only
- Qualifiers: DisplayName ("File Data Operations/sec") , PerfDefault, CounterType (272696320) , DefaultScale (0) , PerfDetail (100)
Rate at which the LAN Redirector is processing data operations. A single operation optimally includes a large number of bytes but each operation has overhead. You can determine the efficiency of this path by dividing the BytesPerSec property value by this property to determine the average number of bytes transferred in each operation.
- FileReadBytesPerSec
-
- Data type: uint64
- Access type: Read-only
- Qualifiers: DisplayName ("File Read Bytes/sec") , CounterType (272696576) , DefaultScale (-4) , PerfDetail (300)
Overall rate at which bytes are read to satisfy file system read requests to all devices on the computer, including read requests from the file system cache. This property displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
For more information about using uint64 values in scripts, see Scripting in WMI.
- FileReadOperationsPerSec
-
- Data type: uint32
- Access type: Read-only
- Qualifiers: DisplayName ("File Read Operations/sec") , CounterType (272696320) , DefaultScale (0) , PerfDetail (100)
Combined rate of file system read requests to all devices on the computer, including requests to read from the file system cache. This property displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
- FileWriteBytesPerSec
-
- Data type: uint64
- Access type: Read-only
- Qualifiers: DisplayName ("File Write Bytes/sec") , CounterType (272696576) , DefaultScale (-4) , PerfDetail (300)
Overall rate at which bytes are written to satisfy file system write requests to all devices on the computer, including write requests to the file system cache. This property displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
For more information about using uint64 values in scripts, see Scripting in WMI.
- FileWriteOperationsPerSec
-
- Data type: uint32
- Access type: Read-only
- Qualifiers: DisplayName ("File Write Operations/sec") , CounterType (272696320) , DefaultScale (0) , PerfDetail (100)
Combined rate of the file system write requests to all devices on the computer, including requests to write to data in the file system cache. This property displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
- FloatingEmulationsPerSec
-
- Data type: uint32
- Access type: Read-only
- Qualifiers: DisplayName ("Floating Emulations/sec") , CounterType (272696320) , DefaultScale (0) , PerfDetail (400)
Rate of floating emulations performed by the system. This property displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
- Frequency_Object
-
- Data type: uint64
- Access type: Read-only
Frequency, in ticks per second, of Timestamp_Object. This property is defined by the provider. This property is inherited from Win32_Perf.
For more information about using uint64 values in scripts, see Scripting in WMI.
- Frequency_PerfTime
-
- Data type: uint64
- Access type: Read-only
Frequency, in ticks per second, of Timestamp_Perftime. A value could be obtained by calling the Windows function QueryPerformanceCounter. This property is inherited from Win32_Perf.
For more information about using uint64 values in scripts, see Scripting in WMI.
- Frequency_Sys100NS
-
- Data type: uint64
- Access type: Read-only
Frequency, in ticks per second, of Timestamp_Sys100NS (10000000). This property is inherited from Win32_Perf.
For more information about using uint64 values in scripts, see Scripting in WMI.
- Name
-
Label by which the statistic or metric is known. When sub-classed, the property can be overridden to be a key property. This property is inherited from CIM_StatisticalInformation.
- PercentRegistryQuotaInUse
-
- Data type: uint32
- Access type: Read-only
- Qualifiers: DisplayName ("% Registry Quota In Use") , CounterType (537003008) , DefaultScale (0) , PerfDetail (200)
Percentage of the total registry quota allowed that is currently being used by the system. This property displays the current percentage value only; it is not an average.
- PercentRegistryQuotaInUse_Base
-
- Data type: uint32
- Access type: Read-only
- Qualifiers: DisplayName (" ") , CounterType (1073939459) , DefaultScale (0) , PerfDetail (200)
Base value for PercentRegistryQuotaInUse.
- Processes
-
- Data type: uint32
- Access type: Read-only
- Qualifiers: DisplayName ("Processes") , CounterType (65536) , DefaultScale (1) , PerfDetail (400)
Number of processes in the computer at the time of data collection. This is an instantaneous count, not an average over the time interval. Each process represents a running program.
- ProcessorQueueLength
-
- Data type: uint32
- Access type: Read-only
- Qualifiers: DisplayName ("Processor Queue Length") , CounterType (65536) , DefaultScale (1) , PerfDetail (400)
Number of threads in the processor queue. There is a single queue for processor time even on computers with multiple processors. Unlike the disk counters, this property counts ready threads only, not threads that are running. A sustained processor queue of greater than two threads generally indicates processor congestion. This property displays the last observed value only; it is not an average.
- SystemCallsPerSec
-
- Data type: uint32
- Access type: Read-only
- Qualifiers: DisplayName ("System Calls/sec") , CounterType (272696320) , DefaultScale (-1) , PerfDetail (200)
Combined rate of calls to system service routines by all processes running on the computer. These routines perform all of the basic scheduling and synchronization of activities on the computer, and provide access to non-graphic devices, memory management, and namespace management. This property displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
- SystemUpTime
-
- Data type: uint64
- Access type: Read-only
- Qualifiers: DisplayName ("System Up Time") , CounterType (807666944) , DefaultScale (-5) , PerfDetail (100)
Elapsed time (in seconds) that the computer has been running after it was last started. This property displays the difference between the start time and the current time.
For more information about using uint64 values in scripts, see Scripting in WMI.
- Threads
-
- Data type: uint32
- Access type: Read-only
- Qualifiers: DisplayName ("Threads") , CounterType (65536) , DefaultScale (1) , PerfDetail (400)
Number of threads in the computer at the time of data collection. This is an instantaneous count, not an average over the time interval. A thread is the basic executable entity that can execute instructions in a processor.
- Timestamp_Object
-
- Data type: uint64
- Access type: Read-only
Object-defined timestamp, defined by the provider. This property is inherited from Win32_Perf.
For more information about using uint64 values in scripts, see Scripting in WMI.
- Timestamp_PerfTime
-
- Data type: uint64
- Access type: Read-only
High Performance counter timestamp. A value could be obtained by calling the Windows function QueryPerformanceCounter. This property is inherited from Win32_Perf.
For more information about using uint64 values in scripts, see Scripting in WMI.
- Timestamp_Sys100NS
-
- Data type: uint64
- Access type: Read-only
Timestamp value in 100 nanosecond units. This property is inherited from Win32_Perf.
For more information about using uint64 values in scripts, see Scripting in WMI.
Remarks
All classes derived from Win32_Perf are designed to be used with a refresher object. For more information about how to create and use a refresher object in C++, see Accessing Performance Data in C++. For more information about how to create and use a refresher object using scripts, see Refreshing WMI Data in Scripts.
The performance class and property qualifiers determine how to interpret the class data. For more information, see Class Qualifiers for Performance Counter Classes and Property Qualifiers for Performance Counter Classes.
Examples
For script code examples, see WMI Tasks for Scripts and Applications and the TechNet ScriptCenter Script Repository.
For C++ code examples, see WMI C++ Application Examples.
Requirements
|
Minimum supported client | Windows XP [desktop apps only] |
|---|---|
|
Minimum supported server | Windows Server 2003 [desktop apps only] |
|
Namespace |
\root\CIMV2 |
|
DLL |
|
See also
- Performance Counter Classes
- Accessing WMI Preinstalled Performance Classes
- WMI Tasks: Performance Monitoring
- Accessing Performance Data in Script
Send comments about this topic to Microsoft
Build date: 11/19/2012