vote up 3 vote down star
2

Hi, I'm trying to figure out how to get the CPU usage for a particular process but can only find information relating to overall CPU usage.

Does anyone know how to extract the current CPU usage in percentage terms for a specific application?

flag

76% accept rate
added some info on finding instance based on PID – Erich Mirabal Aug 14 at 16:33

1 Answer

vote up 6 vote down check

Performance Counters - Process - % Processor Time.

Little sample code to give you the idea:

using System;
using System.Diagnostics;
using System.Threading;

namespace StackOverflow
{
    class Program
    {
        static void Main(string[] args)
        {
            PerformanceCounter myAppCpu = 
                new PerformanceCounter(
                    "Process", "% Processor Time", "OUTLOOK", true);

            Console.WriteLine("Press the any key to stop...\n");
            while (!Console.KeyAvailable)
            {
                double pct = myAppCpu.NextValue();
                Console.WriteLine("OUTLOOK'S CPU % = " + pct);
                Thread.Sleep(250);
            }
        }
    }
}

EDIT -- Notes for finding the instance based on Process ID:

I do not know of any better way, and hopefully somebody does. If not, here is one way you can find the right instance name for your process given the Process ID and process name.

There is another Performance Counter (PC) called "ID Process" under the "Process" family. It returns the PID for the instance. So, if you already know the name (i.e. "chrome" or "myapp"), you can then test each instance until you find the match for the PID.

The naming is simple for each instance: "myapp" "myapp#1" "myapp#2" ... etc.

...  new PerformanceCounter("Process", "ID Process", appName, true);

Once the PC's value equals the PID, you found the right appName. You can then use that appName for the other counters.

link|flag
would you be so kind as to add some small sample code? – Grant Aug 14 at 12:25
thankyou very much. spot on! – Grant Aug 14 at 12:36
Do you know if this can be adapted to work off a process ID or handle? the reason is because there may be multiple processes running and i would only be interested in monitoring a specific one of them. – Grant Aug 14 at 14:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.