33

如何使用System.Diagnostics.PerformanceCounter跟踪进程的内存和 CPU 使用情况?

4

3 回答 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

我认为您需要Windows Management Instrumentation。

编辑:见这里:

测量一个进程的 CPU 和 RAM 使用率

如何在 C# 中获取 CPU 使用率?

于 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 回答