如何以编程方式检查网站cpu使用情况?

时间:2009-12-16 23:14:32

标签: asp.net iis cpu

有谁知道如何在IIS中或通过任何其他方式检查网站的CPU使用情况?非常感谢。

2 个答案:

答案 0 :(得分:3)

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

答案 1 :(得分:0)

读取CPU性能计数器是一种方法。