-
Notifications
You must be signed in to change notification settings - Fork 511
Improve documentation by avoiding redirecting to Metricbeat Metricset #15369
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+134
−13
Merged
Changes from 3 commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
238fbe1
Improve documentation by avoiding redirecting to Metricbeat Metricset
herrBez 53684ba
Make sure we do not cite Metricbeat and/or metricset
herrBez c705fd1
Merge branch 'main' into wmi-doc-improve
herrBez 749986e
Bump version after documentation change
herrBez ccca3fb
Use warning and note keyword instead of ::::note::::
herrBez 58c77cc
Merge branch 'main' into wmi-doc-improve
herrBez 82aaa43
Align the documentation with the Metricbeat documentation, makes sure…
herrBez cb7113e
Update packages/wmi/docs/README.md
herrBez fd2b257
Update packages/wmi/docs/README.md
herrBez 5ceb896
Update packages/wmi/docs/README.md
herrBez 98f4a70
Update packages/wmi/docs/README.md
herrBez 1c952d9
Update packages/wmi/docs/README.md
herrBez 93fd15a
Update packages/wmi/docs/README.md
herrBez 3759367
Update packages/wmi/docs/README.md
herrBez e7a3d73
Update packages/wmi/docs/README.md
herrBez 3987417
Update packages/wmi/docs/README.md
herrBez 5e6b779
Update packages/wmi/docs/README.md
herrBez a0854cf
Update packages/wmi/docs/README.md
herrBez 48363d0
Update packages/wmi/docs/README.md
herrBez 26382d7
Update packages/wmi/docs/README.md
herrBez c37b78d
Update packages/wmi/docs/README.md
herrBez 19e03aa
Update packages/wmi/docs/README.md
herrBez 1267544
Update packages/wmi/docs/README.md
herrBez c270b48
Update packages/wmi/docs/README.md
herrBez edd6bb6
Update packages/wmi/docs/README.md
herrBez 5fad477
Update packages/wmi/docs/README.md
herrBez 4cdacec
Update packages/wmi/docs/README.md
herrBez eca558e
Update packages/wmi/docs/README.md
herrBez b5063d0
Update packages/wmi/docs/README.md
herrBez 5267ab4
Update packages/wmi/docs/README.md
herrBez 3250e38
Update packages/wmi/docs/README.md
herrBez 28fb5c0
Update packages/wmi/docs/README.md
herrBez 8c5d3b1
Update packages/wmi/docs/README.md
herrBez f989169
Update packages/wmi/docs/README.md
herrBez 0aae280
Update packages/wmi/docs/README.md
herrBez 15f71fc
Update packages/wmi/docs/README.md
herrBez 2d8288d
Merge branch 'main' into wmi-doc-improve
herrBez File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,26 +1,136 @@ | ||
| # Custom WMI (Windows Management Instrumentation) Input Package | ||
|
|
||
| The Custom WMI Input integration is used to ingest data from the Windows Management Instrumentation (WMI) classes. | ||
| You can use this input to collect instances of any WMI class. Please be aware that | ||
| when working with WMI queries, it is the user’s responsibility to ensure that queries are safe, efficient, and do not cause unintended side effects. A notorious example of a problematic WMI class is Win32_Product. [Read more in Windows Documentation](https://learn.microsoft.com/en-us/troubleshoot/windows-server/admin-development/windows-installer-reconfigured-all-applications#more-information_). | ||
| The Custom WMI Input integration reads metrics via Windows Management Instrumentation [(WMI)](https://learn.microsoft.com/en-us/windows/win32/wmisdk/about-wmi), a core management technology in the Windows Operating system. | ||
| By leveraging WMI Query Language (WQL), this integration allows you to extract detailed system information and metrics to monitor the health and performance of Windows Systems. | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| This input leverages the [Microsoft WMI](https://github.com/microsoft/wmi) library, a convenient wrapper around the [GO-OLE](https://github.com/go-ole) library which allows to invoke the WMI Api. | ||
|
|
||
| ## Requirements | ||
|
|
||
| This integration requires Elastic-Agent 8.19.0 or 9.1.0 and above. | ||
|
|
||
| This integration is only available on Windows. We refer to the Metricbeat input for the [Compatibility](https://www.elastic.co/docs/reference/beats/metricbeat/metricbeat-metricset-windows-wmi#compatibility). | ||
| ## Compatibility | ||
|
|
||
| This integration has been tested on the following platforms: | ||
|
|
||
| ## Configuration | ||
| | Operating System | Architecture | | ||
| |---------------------------------------------|--------------| | ||
| | Microsoft Windows Server 2019 Datacenter | x64 | | ||
| | Microsoft Windows 11 Pro | x64 | | ||
|
|
||
|
|
||
| ### WMI Query Language (WQL) Support | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| This integrations supports the execution of | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| [WQL](https://learn.microsoft.com/en-us/windows/win32/wmisdk/wql-sql-for-wmi) | ||
| queries, a SQL-like query language for retrieving information from WMI | ||
| namespaces. | ||
|
|
||
| Currently, this input package supports queries with `SELECT`, `FROM` and | ||
| `WHERE` clauses. | ||
|
|
||
| When working with WMI queries, it is the user’s responsibility to ensure | ||
| that queries are safe, efficient, and do not cause unintended side | ||
| effects. A notorious example of a problematic WMI class is | ||
| Win32\_Product. Read more in [Windows | ||
| Documentation](https://learn.microsoft.com/en-us/troubleshoot/windows-server/admin-development/windows-installer-reconfigured-all-applications#more-information_). | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ### WMI Arbitrator and Query Execution | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| Query execution is managed by the underlying WMI Framework, specifically | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| the [WMI | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| Arbitrator](https://learn.microsoft.com/en-us/troubleshoot/windows-server/system-management-components/new-wmi-arbitrator-behavior-in-windows-server). | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| The Arbitrator is responsible for: | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| - Scheduling and controlling query execution | ||
|
|
||
| - Throttling or stopping queries based on system resource availability | ||
| and conditions | ||
|
|
||
| There is no way to directly stop a query once it has started. To prevent | ||
| Elastic Agent from waiting indefinitely for a query to return a result or | ||
| fail, Elastic Agent has a timeout mechanism that stops waiting for query | ||
| results after a specified timeout. This is controlled by the | ||
| `wmi.warning_threshold` setting. | ||
|
|
||
| While Elastic Agent stops waiting for the result, the underlying WMI query | ||
| may continue running until the WMI Arbitrator decides to stop execution. | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
|
|
||
|
|
||
| ## WMI Type support | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| The extensive documentation for the input is currently available [here](https://www.elastic.co/docs/reference/beats/metricbeat/metricbeat-metricset-windows-wmi). We highly encourage users to become familiar with the linked documentation. | ||
| The `microsoft/wmi` library internally uses the WMI Scripting API. This API, as per the | ||
| [official WMI Documentation](https://learn.microsoft.com/en-us/windows/win32/wmisdk/querying-wmi), | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| does not provide direct type conversion for `uint64`, `sint64`, and `datetime` | ||
| [Common Information Model](https://learn.microsoft.com/en-us/windows/win32/wmisdk/common-information-model) (CIM) types; | ||
| instead, these values are returned as strings. | ||
|
|
||
| To ensure the correct data type is reported, Elastic Agent dynamically fetches the | ||
| CIM type definitions for the properties of the WMI instance classes returned by the query, | ||
| and then performs the necessary data type conversions. | ||
|
|
||
| To optimize performance and avoid repeatedly fetching these schema definitions | ||
| for every row and every request, an LRU cache is utilized. This cache stores | ||
| the schema definition for each WMI class, property pair encountered. For queries involving | ||
| superclasses, such as `CIM_LogicalDevice`, the cache will populate with individual entries | ||
| for each specific derived class (leaf of the class hierarchy) whose instances are returned by the query (for example, `Win32_DiskDrive` or `Win32_NetworkAdapter`). | ||
|
|
||
| ::::{note} | ||
| The properties of type `CIM_Object` (embedded objects) are not yet supported and are ignored. | ||
| :::: | ||
|
|
||
| ::::{note} | ||
| The properties of type `CIM_Reference` (references) used in [WMI Association Classes](https://learn.microsoft.com/en-us/windows/win32/wmisdk/declaring-an-association-class) are currently returned as strings as reported by the microsoft/wmi library. | ||
| :::: | ||
|
|
||
| The most commonly used configuration options are available on the main integration page, while more advanced and customizable options currently resides under the "Advanced options" part of the integration settings page. | ||
|
|
||
| ### Date Fields Mapping | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| Elastic-Agent converts WMI properties of type "datetime" to timestamps, but these are serialized as strings in the output. Since date detection is disabled by default, these fields will be stored as strings unless explicitly mapped as dates. To ensure proper mapping, we recommend explicitly setting the mapping in the `@custom` template. | ||
| Elastic Agent converts WMI properties of type "datetime" to timestamps, but these are serialized as strings in the output. Since date detection is disabled by default, these fields will be stored as strings unless explicitly mapped as dates. To ensure proper mapping, we recommend explicitly setting the mapping in the `@custom` template. | ||
| Refer to [this guide](https://www.elastic.co/docs/reference/fleet/data-streams#data-streams-index-templates-edit) | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| and [this guide](https://www.elastic.co/docs/manage-data/data-store/index-basics#manage-component-templates) for additional | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| details. | ||
|
|
||
| ## Configuration | ||
|
|
||
| | Option | Description | Default | | ||
| |-----------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------| | ||
| | `wmi.namespace` | The default WMI namespace used for queries. This can be overridden per query. | `root\cimv2` | | ||
| | `wmi.warning_threshold` | The time threshold after which Elastic Agent will stop waiting for the query result and return control to the main flow of the program. A warning is logged indicating that the query execution has exceeded the threshold. See [WMI Arbitrator and Query Execution](#wmi-arbitrator-and-query-execution) for more details. | Equal to `period` | | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| | `wmi.include_queries` | If set to `true`, the documents the query is added in the output document | `false` | | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| | `wmi.include_null_properties` | If set to `true`, the output documents will include the properties that have a `null` value. | `false` | | ||
| | `wmi.include_empty_string_properties` | If set to `true`, the output documents will include the properties that are empty strings. | `false` | | ||
| | `wmi.queries` | The list of queries to execute. The list cannot be empty. See [Query Configuration](#query-configuration) for the format of the queries. | *(required)* | | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ### Query Configuration | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| Each item in the `queries` list specifies a wmi query to perform. | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| | Option | Description | Required/Default | | ||
| |-------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------| | ||
| | `class` | The WMI class. Specifies the `FROM` clause in the query. | Required | | ||
| | `properties`| List of properties to return. Specifies the `SELECT` clause. Set to an empty list (default) to retrieve all available properties. | Default: empty list | | ||
| | `where` | The `WHERE` clause. Read more about the format [in the Windows Documentation](https://learn.microsoft.com/en-us/windows/win32/wmisdk/where-clause). | Optional | | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| | `namespace` | The WMI Namespace for this query (overrides the global `namespace` value for this query). | Optional | | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ### Example | ||
|
|
||
| Example WQL Query: | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ```sql | ||
| SELECT Name, ProcessId, WorkingSetSize | ||
| FROM Win32_Process | ||
| WHERE Name = 'lsass.exe' AND WorkingSetSize > 104857600 | ||
| ``` | ||
|
|
||
| Equivalent YAML Configuration: | ||
herrBez marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ```yaml | ||
| - class: Win32_Process | ||
| properties: | ||
| - Name | ||
| - ProcessId | ||
| - WorkingSetSize | ||
| where: "Name = 'lsass.exe' AND WorkingSetSize > 104857600" | ||
| ``` | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.