Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

c# calculate CPU usage for a specific application

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?

like image 592
Grant Avatar asked Aug 14 '09 12:08

Grant


1 Answers

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);             }         }     } } 

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.

like image 87
Erich Mirabal Avatar answered Oct 08 '22 18:10

Erich Mirabal