web-dev-qa-db-ja.com

PerformanceCounterを使用してプロセスごとのメモリとCPU使用率を追跡しますか?

System.Diagnostics.PerformanceCounter を使用して、プロセスのメモリとCPU使用率を追跡するにはどうすればよいですか?

28
Louis Rhys

プロセスごとのデータの場合:

Process p = /*get the desired process here*/;
PerformanceCounter ramCounter = new PerformanceCounter("Process", "Working Set", p.ProcessName);
PerformanceCounter cpuCounter = new PerformanceCounter("Process", "% Processor Time", p.ProcessName);
while (true)
{
    Thread.Sleep(500);
    double ram = ramCounter.NextValue();
    double cpu = cpuCounter.NextValue();
    Console.WriteLine("RAM: "+(ram/1024/1024)+" MB; CPU: "+(cpu)+" %");
}

パフォーマンスカウンターには、ワーキングセットとプロセッサー時間以外のカウンターもあります。

49
Louis Rhys
3
Robert Harvey