我对此完全感到困惑(TM):在 Win7SP1、64 位机器上,PerfMon
似乎完全否认安装的自定义性能计数器的知识。我正在使用现有的代码库,该代码库在生产机器上安装计数器非常好,但是当我在我的机器上运行它时,当我使用我添加的计数器运行它时,或者如果我运行一个完全人为的程序集(其中的肉贴在下面),我的行为很奇怪。
使用以下代码段可能最容易描述:
var category = "SuperTest";
var counterName = "Test Counter 1";
var shouldInstall = true;
if (PerformanceCounterCategory.Exists(category))
{
shouldInstall = false;
Console.WriteLine("{0} Category Exists. Overwrite? [n]", category);
var input = Console.ReadLine();
if (bool.TryParse(input, out shouldInstall))
{
PerformanceCounterCategory.Delete(category);
}
}
if (shouldInstall)
{
var col = new CounterCreationDataCollection();
col.Add(new CounterCreationData()
{
CounterName = counterName,
CounterType = PerformanceCounterType.NumberOfItems64
});
PerformanceCounterCategory.Create(category, "Test category.", PerformanceCounterCategoryType.SingleInstance, col);
// Magical voodoo line that may indicate my inexperience, but whose inclusion or
// exclusion does not affect discernibly affect behavior.
PerformanceCounter.CloseSharedResources();
}
// Multithreading setup, each thread repeats block below infinitely:
{
System.Threading.Thread.Sleep((new Random()).Next(100));
try
{
var counter = new PerformanceCounter(category, counterName, false));
c.Increment();
}
catch (Exception ex) { /* ... */ }
}
第一次运行时,类别不存在,它继续创建类别和计数器。我杀死了这个过程,然后打开PerfMon
. 在这一点上,我可以Add Counter
看到类别和计数器,添加它非常好,然后看着它坐在0.000
。完美的。此时,如果我关闭PerfMon
并重新打开它?我可以很好地看到所有系统性能计数器,但我所有的自定义计数器——如前所述,在生产中工作的计数器,我基于这些计数器创建的计数器,以及人为的计数器——都消失了。
有趣的是,如果我运行上面的代码,它会一直告诉我该组存在。潜得更深,计数器甚至存在。这对我来说似乎很奇怪。让它仍然处于消失状态,并从这里获取提示,我可以运行:lodctr /R
,它们确实回来了。
所以看起来我以某种方式破坏了我自己的性能计数器商店。我的问题有两个部分:
- 这是我在做什么(破坏性能计数器存储)?
- 既然它是可重现的,那么在代码或我的过程中是否有任何突出的东西可以创建这种行为?
在我看来,这与其他“性能计数器消失”的问题有些不同,因为它们确实存在,而且我正在看着它们消失。