System.Diagnostics.PerformanceCounterを使用して、プロセスのメモリとCPU使用率を追跡するにはどうすればよいですか?
質問する
62572 次
3 に答える
55
プロセスごとのデータの場合:
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)+" %");
}
パフォーマンスカウンターには、ワーキングセットとプロセッサー時間以外のカウンターもあります。
于 2010-08-23T06:46:26.497 に答える
3
WindowsManagementInstrumentationが必要だと思います。
編集:ここを参照してください:
于 2010-08-05T04:47:10.307 に答える
3
.NET Coreを使用している場合、これSystem.Diagnostics.PerformanceCounter
はオプションではありません。代わりにこれを試してください:
System.Diagnostics.Process p = System.Diagnostics.Process.GetCurrentProcess();
long ram = p.WorkingSet64;
Console.WriteLine($"RAM: {ram/1024/1024} MB");
于 2019-12-10T14:16:55.750 に答える