我在使用PerflibV2预览自定义性能计数器时遇到问题。
性能监视器按GUID显示我的自定义性能计数器组,当我想展开它时,会显示“无法加载计数器”。
我尝试将自己添加到“性能监视器用户”和“性能日志用户”组中但没有成功。
我用Google搜索,并阅读了很多MSDN文章,但没有成功。
有人熟悉这个问题吗?
以下是我创建和添加自定义性能计数器的详细步骤:
我需要创建一个性能计数器,它将从我的无人管应用程序中更新。
我找到了两种方法:
包装托管性能计数器API,这不是一个选项,因为它会影响性能;
使用提供所需功能的PerflibV2;
作为测试应用程序,我创建了以下描述自定义性能计数器的schema.xml架构:
<!-- <?xml version="1.0" encoding="UTF-16"?> -->
<instrumentationManifest
xmlns="http://schemas.microsoft.com/win/2004/08/events"
xmlns:win="http://manifests.microsoft.com/win/2004/08/windows/events"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
>
<instrumentation>
<counters xmlns="http://schemas.microsoft.com/win/2005/12/counters">
<provider callback = "custom"
applicationIdentity = "PerfCounters.exe"
providerType = "userMode"
providerGuid = "{ab8e1320-965a-4cf9-9c07-fe25378c2a23}">
<counterSet
guid = "{ad36a036-c923-4794-b696-70577630b5cf}"
uri = "Microsoft.Windows.System.PerfCounters.MyCounterSet1"
name = "My LogicalDisk"
description = "This is a sample counter set with multiple instances."
instances = "multiple">
<counter id = "1"
uri = "Microsoft.Windows.System.PerfCounters.MyCounterSet1.MyCounter1"
name = "My Free Megabytes"
description = "First sample counter."
type = "perf_counter_rawcount"
detailLevel = "standard"
defaultScale = "1"/>
</counterSet>
</provider>
</counters>
</instrumentation>
</instrumentationManifest>
并执行:
ctrpp schema.xml
我将创建的文件添加到我的测试应用程序中,并在我的测试应用程序中大致:
PerfAutoInitialize();
ULONG instanceId = 0;
wchar_t instanceName[] = {'t', 'e', 's', 't', 0};
PPERF_COUNTERSET_INSTANCE b = PerfCreateInstance(hDataSource_schema_1, &CtrSetGuid_schema_1_1, instanceName, instanceId);
我安装了性能计数器:
lodctr /m:schema.xml
我的PerfCounters应用程序在尝试从性能监视器中读取计数器时启动并运行。
答案 0 :(得分:3)
注册PerfCounter提供程序失败的原因有几个:
检查清单文件的架构是否有效。您可以针对XSD definition file provided by Microsoft。
如果您想查看,请使用lodctr
工具注册您的清单。确保以管理员身份运行lodctr
工具。如果您的权利不足,它将无声地失败。注册清单后,您应该能够在PerfCounter对话框中看到CounterSet的GUID。 (有关可列出提供者的工具,请参阅Browsing Performance Counters。)
您必须生成头文件和资源文件(使用-rc
的{{1}}和-o
选项。必须将资源文件添加到您的解决方案中。
构建应用程序,然后重新运行ctrpp
工具,同时清单文件和当前目录中的.exe 。确保清单文件指向提供程序的lodctr
属性中二进制文件的文件名:
applicationIdentity
运行该应用。当应用程序运行时,您应该能够在浏览器对话框中看到提供商的名称:
答案 1 :(得分:1)
我的示例的确切问题我不完全确定,但是有一个Microsoft Windows SDK for Windows 7和.NET Framework 3.5 SP1的示例:
http://www.microsoft.com/en-us/download/confirmation.aspx?id=3138
istalling MS SDK示例位于:
C:\ Program Files \ Microsoft SDKs \ Windows \ v7.0 \ Samples \ winbase \ PerfCounters \ Basic \ CPP
它应该适用于Windows 7(ctrcpp具有较少的参数,并且使用PerfAutoInitialize()和PerfAutoCleanup()而不是CounterInitialize()和CounterCleanup())。
应用程序在从perfmon添加计数器时崩溃,请参阅: Perflib 2 crashes when adding a counter (from Perfmon)
答案 2 :(得分:0)
我知道这个问题已经回答了,但我遇到了同样的问题,这是因为我忘记将生成的.RC文件包含在可执行文件中。当我重新编译可执行文件,包括带有字符串表的.RC文件,unlodctr
ed和lodctr
ed模式文件时,它开始工作。