Note 1: Although the WMI check can still be used to collect Windows Performance Counters (and was previously the only method available), it is now recommended to use the dedicated Windows Performance Counters integration. This integration leverages the native Performance Counters API, making it more efficient and easier to configure. In practice, you should avoid using the Win32_PerfFormattedData_XYZ WMI class, as it merely acts as an alias for a Performance Counter Object/Counterset.
Note 2: Certain WMI classes, such as Win32_Product or Win32_UserAccount, are not well-suited for frequent queries, as they can be slow to respond or may cause high CPU usage. Before using any WMI class to collect telemetry, carefully test its performance to ensure it is appropriate for use in a production environment.
The built-in Windows WMI ecosystem offers rich, and in many cases exclusive, access to Windows and Microsoft features and products telemetry. This WMI Check allows mapping rows and columns from WMI class datasets to Datdog metrics and their tags, making it easier to extract meaningful telemetry. Additionally, it supports joining two WMI class datasets, allowing for correlations between datasets that would otherwise be impossible to achieve.
Setup
[Default] Agent User Privilege
The default user configured during the standard Agent installation is sufficient to collect telemetry from many WMI classes. However, some WMI classes may require a user with elevated privileges to access their data.
Configuration
Click the Install Integration button on the WMI Integration Tile.
Open the Datadog Agent Manager on the Windows server.
The default configuration uses the filter clause to limit the metrics pulled. Either set the filters to valid values or remove them as shown above to collect the metrics.
The metrics definitions include three components:
Class property in WMI.
Metric name as it appears in Datadog.
The metric type.
The following sample configuration populates many more metrics on a Windows 2012 server.
This feature is available starting with version 5.3 of the agent
Each WMI query has 2 required options, class and metrics and six optional options, host, namespace, filters, provider, tag_by, constant_tags and tag_queries.
class is the name of the WMI class, for example Win32_OperatingSystem or Win32_PerfFormattedData_PerfProc_Process. You can find many of the standard class names on the MSDN docs. The Win32_FormattedData_* classes provide many useful performance counters by default.
metrics is a list of metrics you want to capture, with each item in the
list being a set of [<WMI_PROPERTY_NAME>, <METRIC_NAME>, <METRIC_TYPE>]:
<WMI_PROPERTY_NAME> is something like NumberOfUsers or ThreadCount. The standard properties are also available on the MSDN docs for each class.
<METRIC_NAME> is the name you want to show up in Datadog.
<METRIC_TYPE> is from the standard choices for all agent checks, such as gauge, rate, histogram or counter.
host is the optional target of the WMI query, localhost is assumed by default. If you set this option, make sure that Remote Management is enabled on the target host. See Configure Remote Management in Server Manager for more information.
namespace is the optional WMI namespace to connect to (default to cimv2).
filters is a list of filters on the WMI query you may want. For example, for a process-based WMI class you may want metrics for only certain processes running on your machine, so you could add a filter for each process name. You can also use the ‘%’ character as a wildcard.
provider is the optional WMI provider (default to 32 on Datadog Agent 32-bit or 64). It is used to request WMI data from the non-default provider. Available options are: 32 or 64.
See MSDN for more information.
tag_by optionally lets you tag each metric with a property from the WMI class you’re using. This is only useful when you have multiple values for your WMI query.
tags optionally lets you tag each metric with a set of fixed values.
tag_queries optionally lets you specify a list of queries, to tag metrics with a target class property. Each item in the list is a set of [<LINK_SOURCE_PROPERTY>, <TARGET_CLASS>, <LINK_TARGET_CLASS_PROPERTY>, <TARGET_PROPERTY>] where:
<LINK_SOURCE_PROPERTY> contains the link value
<TARGET_CLASS> is the class to link to
<LINK_TARGET_CLASS_PROPERTY> is the target class property to link to
<TARGET_PROPERTY> contains the value to tag with
It translates to a WMI query:
SELECT '<TARGET_PROPERTY>' FROM '<TARGET_CLASS>' WHERE '<LINK_TARGET_CLASS_PROPERTY>' = '<LINK_SOURCE_PROPERTY>'
Example
The setting [IDProcess, Win32_Process, Handle, CommandLine] tags each process with its command line. Any instance number is removed from tag_by values, for example: name:process#1 => name:process. NB. The Agent must be running under an Administrator account for this to work as the CommandLine property is not accessible to non-admins.
All metrics collected by the WMI check are forwarded to Datadog as custom metrics, which may impact your billing.
Events
The WMI check does not include any events.
Service Checks
The WMI check does not include any service checks.
Finding WMI classes
List WMI Namespaces
Many WMI classes reside in the default ROOT\cimv2 namespace, but Windows features and products often define additional namespaces that expose namespace-specific WMI classes. To list all available namespaces on a host, run the following PowerShell command:
PS> Get-WmiObject -Namespace Root -Class __Namespace | Select Name
List WMI Namespace Classes
To list all WMI classes available in XYZ namespace run the following PowerShell command:
Get-WmiObject -List -Namespace ROOT\xyz | Select Name
… or drop -Namespace parameter for the default namespace.
To find a WMI class abc one can run the following PowerShell command: