I want to get the overall total CPU usage for an application in C#. I've found many ways to dig into the properties of processes, but I only want the CPU usage of the processes, and the total CPU like you get in the TaskManager.

How do I do that?

link|improve this question
feedback

6 Answers

You can use the PerformanceCounter class from System.Diagnostics:

PerformanceCounter cpuCounter;
PerformanceCounter ramCounter;

cpuCounter = new PerformanceCounter();

cpuCounter.CategoryName = "Processor";
cpuCounter.CounterName = "% Processor Time";
cpuCounter.InstanceName = "_Total";

ramCounter = new PerformanceCounter("Memory", "Available MBytes");


public string getCurrentCpuUsage(){
            return cpuCounter.NextValue()+"%";
}

public string getAvailableRAM(){
            return ramCounter.NextValue()+"MB";
} 
link|improve this answer
26  
Nice - but the original source appears to be from here: zamov.online.fr/EXHTML/CSharp/CSharp_927308.html – Matt Refghi Jun 17 '09 at 17:50
3  
From what i discovered i had to use cpuCounter.NextValue() twice and between them i had to Sleep(500) – Angel.King.47 Mar 7 '10 at 2:56
Matt is right. Even including the bugs, like forgetting the "return" keyword. – Mark At Ramp51 Mar 3 '11 at 1:01
yeah, it looks like a copy from that link, so a link for reference of the original would have been nice style. On the otherhand, its also nice of CMS to provide the answer here so lazy developers dont have to search all over Google to find the same answer. :o) – BerggreenDK Apr 8 '11 at 14:40
You will need to call .NextValue twice, with a System.Threading.Thread.Sleep call in-between (1000ms should suffice). See blogs.msdn.com/b/bclteam/archive/2006/06/02/618156.aspx for more information on why this is required, but the high level summary is that you need to two samples in order to calculate the value, and you need to give the OS a time to get both of these. – Cleggy Jan 24 at 1:48
feedback

It's OK, I got it! Thanks for your help!

Here is the code to do it:

private void button1_Click(object sender, EventArgs e)
{
    selectedServer = "JS000943";
    listBox1.Items.Add(GetProcessorIdleTime(selectedServer).ToString());
}

private static int GetProcessorIdleTime(string selectedServer)
{
    try
    {
        var searcher =
           ManagementObjectSearcher
             (@"\\"+ selectedServer +@"\root\CIMV2",
              "SELECT * FROM Win32_PerfFormattedData_PerfOS_Processor WHERE Name=\"_Total\"");

        ManagementObjectCollection collection = searcher.Get();
        ManagementObject queryObj = collection.Cast<ManagementObject>().First();

        return Convert.ToInt32(queryObj["PercentIdleTime"]);
    }
    catch (ManagementException e)
    {
        MessageBox.Show("An error occurred while querying for WMI data: " + e.Message);
    }
    return -1;
}
link|improve this answer
feedback

You can use WMI to get CPU percentage information. You can even log into a remote computer if you have the correct permissions. Look at http://www.csharphelp.com/archives2/archive334.html to get an idea of what you can accomplish.

Also helpful might be the MSDN reference for the Win32_Process namespace.

See also a CodeProject example How To: (Almost) Everything In WMI via C#.

link|improve this answer
feedback

CMS has it right, but also if you use the server explorer in visual studio and play around with the performance counter tab then you can figure out how to get lots of useful metrics.

link|improve this answer
feedback

A little more than was requsted but I use the extra timer code to track and alert if CPU usage is 90% or higher for a sustained period of 1 minute or longer.

public class Form1

{

int totalHits = 0;

public object getCPUCOunter()
{

    PerformanceCounter cpuCounter = new PerformanceCounter();
    cpuCounter.CategoryName = "Processor";
    cpuCounter.CounterName = "% Processor Time";
    cpuCounter.InstanceName = "_Total";

                 // will always start at 0
    dynamic firstValue = cpuCounter.NextValue();
    System.Threading.Thread.Sleep(1000);
                // now matches task manager reading
    dynamic secondValue = cpuCounter.NextValue();

    return secondValue;

}


private void Timer1_Tick(System.Object sender, System.EventArgs e)
{
    int cpuPercent = getCPUCOunter();
    if (cpuPercent >= 90) {
        totalHits = totalHits + 1;
        if (totalHits == 60)
            Interaction.MsgBox("ALERT 90% usage for 1 minute");
        totalHits = 0;
    } else {
        totalHits = 0;
    }

    Label1.Text = cpuPercent + " % CPU";
    Label2.Text = getRAMCounter() + " RAM Free";
    Label3.Text = totalHits + " seconds over 20% usage";

}

}

link|improve this answer
This is the correct answer... – rofansmanao Mar 28 at 2:37
feedback

This class automatically polls the counter every 1 seconds and is also thread safe:

public class ProcessorUsage
{
    const float sampleFrequencyMillis = 1000;

    protected object syncLock = new object();
    protected PerformanceCounter counter;
    protected float lastSample;
    protected DateTime lastSampleTime;

    /// <summary>
    /// 
    /// </summary>
    public ProcessorUsage()
    {
        this.counter = new PerformanceCounter("Processor", "% Processor Time", "_Total", true);
    }

    /// <summary>
    /// 
    /// </summary>
    /// <returns></returns>
    public float GetCurrentValue()
    {
        if ((DateTime.UtcNow - lastSampleTime).TotalMilliseconds > sampleFrequencyMillis)
        {
            lock (syncLock)
            {
                if ((DateTime.UtcNow - lastSampleTime).TotalMilliseconds > sampleFrequencyMillis)
                {
                    lastSample = counter.NextValue();
                    lastSampleTime = DateTime.UtcNow;
                }
            }
        }

        return lastSample;
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown