gpt4 book ai didi

c# - 从 WMI 检索格式化的性能数据

转载 作者:行者123 更新时间:2023-11-30 23:24:36 32 4
gpt4 key购买 nike

我正在编写一个 WMI 提供程序,我已经设法检索了有关计算机系统和硬件类 的所有信息,但无法从 中获取我想要的数据>性能计数器类。 ( Win32 Classes )

通过查阅 MSDN 文档并使用他们提供的示例,我想出了一个 shell 脚本,它应该返回 Win32_PerfFormattedData 抽象基类的所有属性。

脚本:

$osClass = New-Object System.Management.ManagementClass Win32_PerfFormattedData
$osClass.Options.UseAmendedQualifiers = $true

# Get the Properties in the class
$properties = $osClass.Properties
"This class has {0} properties as follows:" -f $properties.count


# display the Property name, description, type, qualifiers and instance values

foreach ($property in $properties) {
"Property Name: {0}" -f $property.Name
"Description: {0}" -f $($property.Qualifiers["Description"].Value)
"Type: {0}" -f $property.Type
"-------"
}

(引用自 here)

问题是我只从它的基类 Win32_Perf 中检索属性

编辑

经过更多研究,我在 MSDN 上找到了这个:

The WMI formatted class name for a counter object is of the form "Win32_PerfFormattedData_service_name_object_name"

我正在尝试获取 Win32_PerfFormattedData 中的 service_name 和这些服务中的 object_name

我不确定获取属性是否是我现在想要的方式,但我找不到任何文档来获取服务。它们是一样的吗?而且,如果没有,我怎样才能获得我需要的信息? (service_nameobject_name)

我也在一些 C# 代码中尝试过这个并得到相同的结果:

ManagementClass processClass = new ManagementClass();
processClass.Path = new ManagementPath("Win32_PerfFormattedData");

PropertyDataCollection properties = processClass.Properties;

Console.WriteLine("\nProperties:");
foreach (PropertyData property in properties)
{
Console.WriteLine(property.Name);
}

我尝试检索方法来检查这是否是我想要的,但没有返回任何内容:

Console.WriteLine("Methods: ");
foreach (MethodData method in methods)
{
Console.WriteLine(method.Name);
}

编辑 2

还有其他方法可以检索这些数据吗?我查看了所有关于 WMI 的 MSDN 文档,我认为要获得我想要的信息,我必须访问该类 (Win32_PerfFormattedData)。我要检索的各种值:

  • 中央处理器
  • 内存
  • 驱动器(SSD/HDD)
  • 过程
  • 操作系统
  • 图形处理器

我检索了一些类,这些类将提供其中一些的基本信息,但不会提供最新数据,例如每个逻辑处理器的温度。我已经设法从 Win32_PerfFormattedData_PerfOS_Processor 类中获得 1 项服务,它提供每个逻辑处理器的负载百分比,但该类必须包含我需要的其他服务。

最佳答案

Win32_PerfFormattedData_* 类位于“root\cimv2”命名空间下。要枚举这些类(并获取服务名称),您针对该命名空间运行以下 WQL 查询:

SELECT * FROM meta_class WHERE __Class LIKE "Win32_PerfFormattedData%"

实际上,您可以省略命名空间(至少使用 ManagementObjectSearcher),在这种情况下,搜索无处不在。以下是使用 C# 搜索 WMI 的方法:

void SearchWmi()
{
ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT * FROM meta_class WHERE __Class LIKE \"Win32_PerfFormattedData%\"");
foreach (ManagementClass wmiClass in searcher.Get())
{
Console.WriteLine(wmiClass["__CLASS"].ToString());
}
}

您需要添加对 System.Management 的引用以及相应的 using 指令。

您可以找到有关以下方面的性能数据:

CPU:Win32_PerfFormattedData_Processor

内存:Win32_PerfFormattedData_Memory

操作系统:Win32_PerfFormattedData_System

驱动器:Win32_PerfFormattedData_PerfDisk_*

进程:Win32_PerfFormattedData_PerfProc_*

我不知道 GPU。它很可能取决于驱动程序。

有许多带有 UI 和所有好东西的 WMI 资源管理器工具。你试过一些吗?我使用“WMI Explorer 2.0”

可以从here下载

关于c# - 从 WMI 检索格式化的性能数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37710244/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com