我试图显示自上次性能迭代以来操作发生的次数。我使用以下内容创建了一个性能计数器:
var clearStateCounterData = new CounterCreationData()
{
CounterName = ClearStateName,
CounterHelp = "The number of times the service state has been cleared since the last performance iteration",
CounterType = PerformanceCounterType.CounterDelta32
};
然后我调用counter.Increment()
我的应用程序,但我从未看到性能计数器值移动。即使我每秒运行多次。
我需要什么特别的东西或者我需要增加一个特定的值来让 PerformanceCounter 显示一些东西吗?
弄清楚了
我在下面的答案中举了一个使用这个计数器的例子。谢谢你们的帮助。