2

我有一个简单的监控应用程序,它从 PerfMon 计数器中获取一些值。即使在本地机器上进行测试,创建一个新PerformanceCounter对象也需要 30 多秒。

using System;
using System.Diagnostics;

namespace test_slow_perfmon
{
    class Program
    {
        static void Main(string[] args)
        {
            Stopwatch w = new Stopwatch();

            w.Start();
            PerformanceCounter c = new PerformanceCounter("PhysicalDisk", "Avg. Disk Read Queue Length", "_Total", "localhost");
            w.Stop();
            Console.WriteLine(string.Format("Creating a counter took {0}ms", w.Elapsed.TotalMilliseconds));
        }
    }
}

其输出表明创建每个计数器需要超过 32 秒。

我能做些什么(如果有的话)来加快计数器的创建速度?

4

1 回答 1

3

30 秒对我来说听起来像是超时,这表明这可能是某种网络问题。

尝试使用未指定主机名的构造函数创建性能计数器,看看是否有帮助:

PerformanceCounter c = new PerformanceCounter("PhysicalDisk", "Avg. Disk Read Queue Length", "_Total");
于 2012-07-23T12:24:51.327 回答