Click here to Skip to main content
15,886,002 members
Articles / Programming Languages / C#
Article

Monitor and Display CPU State Information

Rate me:
Please Sign up or sign in to vote.
3.05/5 (9 votes)
27 Dec 20064 min read 87K   2.9K   48   5
This article describes a quick and simple approach to displaying information about the state of the CPU or CPUs on a targeted machine; the example provided shows how to display the percentage of processor time consumed by the CPU or CPUs on the target machine.

Introduction

This article describes a quick and simple approach to displaying information about the state of the CPU or CPUs on a targeted machine; the example provided shows how to display the percentage of processor time consumed by the CPU or CPUs on the target machine. This is accomplished by configuring a performance counter and periodically polling for and displaying the percent processor time value using a standard ProgressBar and Label control. This example is representative of only a small portion of the items that may be monitored or captured using the performance counter. The performance counter may also be used to capture a variety of information ranging from the state of the current CLR to the state of the print queue.

Image 1

Figure 1. Displaying CPU Processor Time

The example shown herein could also be used to monitor the state of multiple processors on a single machine; this could be accomplished merely by getting the CPU count (System.Environment.ProcessorCount returns this value) and dynamically adding and populating the Performance Monitor controls at runtime, assigning each to monitor a separate CPU.

Whilst not included in this demo, using the same approach indicated in the last paragraph along with the Dundas .NET Gauge Control, I have set up a form that displays the percent of processor time on a machine equipped with an Intel Centrino Duo dual core processor; a screen shot of this form in use follows:

Image 2

Figure 2. Monitoring Each Processor in a Dual Core System

Getting Started

In order to get started, start up the Visual Studio 2005 IDE and open the included project. The solution consists of a WinForms project with a single form included. The form is used to display the total CPU information.

The solution does not use any additional references aside from the defaults.

Figure 3 shows the Solution Explorer for this project:

Image 3

Figure 3. Solution Explorer

The Code: Main Form

The main form of the application is populated with the following standard toolbox controls:

  • A GroupBox control
  • A Label control
  • A ProgressBar control
  • A PerformanceCounter control
  • A Timer control

The GroupBox control is used to contain the other controls. The ProgressBar control is set to display a value between 0 and 100, and its Step property is set to 1. The Label control will be used to display the current numeric value of the progress bar; the progress bar will display the processor time percentage as captured from the PerformanceCounter control. Both the ProgressBar and the Label control will be updated in response to the Timer control’s Tick event handler. The Timer control is set to evoke the Tick event handler every 10000 msec, and it is enabled from initialization.

The properties for the PerformanceCounter control are set to capture the processor time percentage, and may be set in code or in the IDE’s property grid; in this example, the values were set in the grid:

Image 4

Figure 4 4. Performance Counter Control Properties

To configure the control for the purposes of this example, the CategoryName property was set to “Processor”, the CounterName property was set to “% Processor Time”, and the InstanceName was set to “_Total”. To monitor the state of a single process, the InstanceName property would be set to point to a specific processor (e.g., 0 or 1). You may wish to examine some of the other CategoryNames and CounterNames available in the drop downs to get a feel for some of the many other things you can examine through this control.

With these properties set, there is little else to do other than write a couple of lines of code; the following is the sum total of all of the code in the main form of the application:

C#
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace CpuUsageTest
{
    public partial class frmCpuUsage : Form
    {
        public frmCpuUsage()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            progressBar1.Value = (int)(performanceCounter1.NextValue());
            label1.Text = "Processor Time: " + 
                          progressBar1.Value.ToString() + "%";
        }
    }
}

As you can see, the only real addition to the default code is the handler for the timer Tick event; in the two lines of code added, the progress bar value is set to display the value from the performance counter. The Label control is updated with the value passed to the progress bar. These values are updated each time the Tick event is fired.

Summary

This article described an approach to monitoring the percent of processor time associated with all of the processors on a targeted machine; this could be modified with little difficulty to display the values associated with each of the processors on a multi-processor machine. Aside from the example shown herein, the PerformanceCounter control may be deployed to monitor or capture a large variety of information about the system as well as of the processors.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionThank you ,but I still have a question Pin
zs12zs24-Jun-12 4:09
zs12zs24-Jun-12 4:09 
QuestionModification? Pin
Member 473692626-Feb-09 23:35
Member 473692626-Feb-09 23:35 
Hi can this be modified to capture the CPU Usage of a specific process alone? instead of the total CPU Usage of the entire system?

--Deekshit
GeneralMulti-processor Pin
rsaint2716-Feb-07 6:32
rsaint2716-Feb-07 6:32 
Generalcode dont work Pin
xpmule31-Dec-06 20:19
xpmule31-Dec-06 20:19 
GeneralRe: code dont work Pin
ryanoc33320-Mar-07 2:43
ryanoc33320-Mar-07 2:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.