我在使用 PerflibV2 预览自定义性能计数器时遇到问题。
性能监视器按 GUID 显示我的自定义性能计数器组,当我想扩展它时,会显示“无法加载计数器”。
我尝试将自己添加到“性能监视器用户”和“性能日志用户”组,但没有成功。
我用谷歌搜索了它,并阅读了很多 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 应用程序在尝试从性能监视器读取计数器时启动并运行。