The System Monitor element of the Performance tool allows you to track performance counters for different system objects such as memory, CPU, network, and many others. System Monitor can display in graph, histogram (a moving bar chart), and report formats. Of course, it is not practical to know all the counters, but there are a few that are more important than others. These are listed below according to the type of object.
Disk Counters
Before we look at the counters, remember that disk counters cannot be gathered until you run the Diskperf -y command. Each of the counters listed below have corresponding counters on the LogicalDisk object. The difference is that LogicalDisk is for a volume, while PhysicalDisk is for an entire hard disk.
- PhysicalDisk: Current Disk Queue Length – measures the number of requests waiting for disk access. A value higher than 2 suggests a bottleneck.
- PhysicalDisk: Disk Bytes / Transfer – Average number of bytes transferred between memory and disk during reads and writes. Values around 4K can suggest a high level of paging.
- PhysicalDisk: %Disk Time – Percentage of time that a disk is busy handing read or write operations. Higher values suggest a disk bottleneck.
Processor Counters
- Processor: % Processor Time – Percentage of time that the Processor is busy handling threads. Acceptable values will depend upon the specifications of the system, but a value above 80% suggests a bottleneck.
- Processor: Interrupts/sec – Average number of times per second that a device interrupts the CPU. This must be compared versus baseline measurements to determine a problem. A very high value usually suggests malfunctioning hardware.
- System: Processor Queue Length – Number of threads waiting for access to the CPU. In a single processor system, a value of 2 or higher suggests a bottleneck.
Network Counters
- NetworkInterface: Total Bytes/sec – Measures the total amount of inbound and outbound traffic passed though the network interface. Acceptable values are determined by the maximum of the media (like Ethernet) in use. When value approaches the card maximum, it may be time to upgrade to a faster or multiple adapters.
- NetworkInterface: Output Queue Length – Number of packets that are queued waiting for access to the media. Values higher than 2 suggest a bottleneck.
Memory Counters
- Memory: Available Bytes – Number of byte of memory available at any given point in time. A value of less than 4K suggests the need for additional memory.
- Memory: Pages/sec – The number of times per second that data is transferred between RAM and the paging file. If this value is much higher than the baseline measurement, it suggests the need for additional RAM.
- Memory: Page Faults/sec – How often a needed memory page is not found in RAM and must be swapped in from the page file. Again, high values above those observed in the baseline suggest the need for more RAM.