8

我正在编写一个程序,它使用 .NET 性能计数器来获取特定进程的 CPU、内存和网络使用情况。

例如,要获取 的 CPU 和内存数据Explorer,我创建如下性能计数器:

PerformanceCounter PC = new PerformanceCounter();
PC.CategoryName = "Process";
PC.CounterName = "% Processor Time";
PC.InstanceName = "Explorer";

PerformanceCounter PC = new PerformanceCounter();
PC.CategoryName = "Process";
PC.CounterName = "Working Set - Private";
PC.InstanceName = "Explorer";

不幸的是,进程没有属性categoryName可以让我获得该进程的网络使用情况。我可以使用网络接口categoryName来获取任何特定 NIC 上的整体网络使用情况,但不能将其隔离到任何给定进程。

4

1 回答 1

0

我想您只能获取整个系统的网络使用情况。您可以使用以下代码:

GetCounterValue(_netRecvCounters[index], "Network Interface", "Bytes Received/sec",      _instanceNames[index]):

double GetCounterValue(PerformanceCounter pc, string categoryName, string counterName, string instanceName)
{
    pc.CategoryName = categoryName;
    pc.CounterName = counterName;
    pc.InstanceName = instanceName;
    return pc.NextValue();  
}

使用 PerformanceCounters,您只能获取 Microsoft 希望您可以访问的值。

于 2013-04-25T12:18:53.180 回答