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?
|
|
You can use the PerformanceCounter class from System.Diagnostics:
|
||||||
|
|
|
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. |
||
|
|
|
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. |
||
|
|
|
|
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 |
||
|
|
|
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 |
|||
|
|
|
|
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; } |
||
|
|
