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?
|
|
You can use the PerformanceCounter class from System.Diagnostics:
|
|||||||||||||||||||
|
|
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.
|
||||
|
|
|
It's OK, I got it! Thanks for your help! Here is the code to do it:
|
||||
|
|
|
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#. |
||||
|
|
|
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. |
|||
|
|
|
After spending some time reading over a couple different threads that seemed pretty complicated I came up with this. I needed it for an 8 core machine where I wanted to monitor SQL server. For the code below then I passed in "sqlservr" as appName.
It seems to correctly measure the % of CPU being used by SQL on my 8 core server. |
|||
|
|
This class automatically polls the counter every 1 seconds and is also thread safe:
|
|||
|
|