如何在性能监视器上反映通过代码创建的性能计数器?

时间:2015-12-08 02:18:02

标签: c# performancecounter performance-monitor

我正在通过代码创建一个性能计数器。对于参考CounterName,CategoryName,CategoryHelp,InstanceName是const字符串。

//creating the category
var counterData = new CounterCreationDataCollection();

            var counterCreationData = new CounterCreationData(CounterName, "", CounterType);
            counterData.Add(counterCreationData);

            PerformanceCounterCategory.Create(CategoryName, CategoryHelp, 
                PerformanceCounterCategoryType.MultiInstance, counterData);

//creating the counter
_counter = new PerformanceCounter(CategoryName, CounterName, InstanceName, false);
_counter.Increment();

如何通过代码反映性能监视器我的性能计数器?

enter image description here

1 个答案:

答案 0 :(得分:0)

您只需点击+按钮即可。如果一切都在C#代码中完美运行,您将能够在那里看到您的PC条目。从该窗口添加您的计数器。 您是否尝试以编程方式添加到perfmon UI?