vote up 5 vote down star
5

I want to get the overall total CPU usage for an app in C#. Ive 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. Can anyone help please?

flag

6 Answers

vote up 15 vote down

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(){
            cpuCounter.NextValue()+"%";
}

public string getAvailableRAM(){
            ramCounter.NextValue()+"MB";
}
link|flag
+1. nice answer! – Mitch Wheat Apr 28 at 6:30
1  
Nice - but the original source appears to be from here: zamov.online.fr/EXHTML/CSharp/… – Matt Refghi Jun 17 at 17:50
vote up -3 vote down

I can remember very well but I belive there are some Performance counters for that. just google it and you will find what you need.

link|flag
if you're going to say google it, at least tell what to google for exactly – Agile Noob Sep 21 at 19:36
vote up 0 vote down

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|flag
vote up 0 vote down

Ive seen that solution on google but im doing it for a remote server... and i have looked on every available page on google, trust me! Sigh

link|flag
For getting information about a remote machine, you can use WMI, check the ManagementScope class: is.gd/6TYN – CMS Nov 10 '08 at 15:51
vote up 1 vote down

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: http://msdn.microsoft.com/en-us/library/aa394372(VS.85).aspx

A CodeProject example: http://www.codeproject.com/KB/cs/EverythingInWmi02.aspx

link|flag
vote up 0 vote down

Its ok i got it! Thanks for your help!

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 * FROMWin32_PerfFormattedData_PerfOS_Processor WHERE Name=\"_Total\"");

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

return Convert.ToInt32(queryObj["PercentIdleTime"]); } catch (ManagementException e) { MessageBox.Show("An error occurred while querying for WMI data: " + e.Message); }

return -1; }

link|flag

Your Answer

Get an OpenID
or

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