2

有什么方法可以使用性能计数器来监控所有流量,但在特定端口?

我在做:

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();  
    }

但它似乎记录了一切

4

1 回答 1

0

使用性能计数器,必须有人明确地向注册表提供每个计数器值。如果没有人提供您正在寻找的特定值作为输入,那么就无法将其取出。

于 2013-03-12T18:51:37.077 回答