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();
}
을하지만 성능 카운터로 모든 것을에게
성능 카운터없이 어떻게 할 수 있습니까? 다른 방법이 있습니까? –