有谁知道如何在IIS中或通过任何其他方式检查网站的CPU使用情况?非常感谢。
答案 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性能计数器是一种方法。