2
有誰知道如何檢查IIS中的網站的CPU使用情況或通過任何其他方式?非常感謝。如何以編程方式檢查網站cpu使用情況?
有誰知道如何檢查IIS中的網站的CPU使用情況或通過任何其他方式?非常感謝。如何以編程方式檢查網站cpu使用情況?
How to calculate the CPU Usage Programmatically using C# or VB.NET使用PerformanceCounter.
static PerformanceCounter cpuUsage;
public static void Main(string[] args)
{
cpuUsage = new PerformanceCounter("Processor", "% Processor Time", "_Total");
Console.WriteLine(cpuUsage.NextValue() + " %");
Thread.Sleep(1000);
Console.WriteLine(cpuUsage.NextValue() + " %");
Console.Read();
}
讀取CPU性能計數器是一種方法。
編程,或者這是否屬於超級用戶或serverfault? – shoover 2009-12-16 23:33:34
只要你是以編程方式表示,它就屬於這裏。 – 2009-12-17 01:53:57