From 13e64603fb5e732873ca407cebb104fa812f3ea3 Mon Sep 17 00:00:00 2001 From: Hiroshi Hatake Date: Thu, 31 Aug 2023 16:38:53 +0900 Subject: [PATCH] in_windows_exporter_metrics: Add document for process metrics (#1182) * in_windows_exporter_metrics: Add description for parameters of process metrics Signed-off-by: Hiroshi Hatake * Clarify the sentence. Co-authored-by: Pat Signed-off-by: Hiroshi Hatake --------- Signed-off-by: Hiroshi Hatake Co-authored-by: Pat --- pipeline/inputs/windows-exporter-metrics.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pipeline/inputs/windows-exporter-metrics.md b/pipeline/inputs/windows-exporter-metrics.md index 00ee10d8d..61713457e 100644 --- a/pipeline/inputs/windows-exporter-metrics.md +++ b/pipeline/inputs/windows-exporter-metrics.md @@ -24,6 +24,8 @@ The initial release of Windows Exporter Metrics contains a single collector avai | we.service.where | Specify the WHERE clause for retrieving service metrics. | `NULL` | | we.service.include | Specify the key value pairs for the include condition for the WHERE clause of service metrics. | `NULL` | | we.service.exclude | Specify the key value pairs for the exclude condition for the WHERE clause of service metrics. | `NULL` | +| we.process.allow\_process\_regex | Specify the regex covering the process metrics to collect. Collect all by default. | "/.+/" | +| we.process.deny\_process\_regex | Specify the regex for process metrics to prevent collection of/ignore. Allow all by default. | `NULL` | | collector.cpu.scrape\_interval | The rate in seconds at which cpu metrics are collected from the host operating system. If a value greater than 0 is used then it overrides the global default otherwise the global default is used. | 0 seconds | | collector.net.scrape\_interval | The rate in seconds at which net metrics are collected from the host operating system. If a value greater than 0 is used then it overrides the global default otherwise the global default is used. | 0 seconds | | collector.logical_disk.scrape\_interval | The rate in seconds at which logical\_disk metrics are collected from the host operating system. If a value greater than 0 is used then it overrides the global default otherwise the global default is used. | 0 seconds | @@ -36,6 +38,7 @@ The initial release of Windows Exporter Metrics contains a single collector avai | collector.service.scrape\_interval | The rate in seconds at which service metrics are collected from the host operating system. If a value greater than 0 is used then it overrides the global default otherwise the global default is used. | 0 seconds | | collector.memory.scrape\_interval | The rate in seconds at which memory metrics are collected from the host operating system. If a value greater than 0 is used then it overrides the global default otherwise the global default is used. | 0 seconds | | collector.paging_file.scrape\_interval | The rate in seconds at which paging_file metrics are collected from the host operating system. If a value greater than 0 is used then it overrides the global default otherwise the global default is used. | 0 seconds | +| collector.process.scrape\_interval | The rate in seconds at which process metrics are collected from the host operating system. If a value greater than 0 is used then it overrides the global default otherwise the global default is used. | 0 seconds | | metrics | To specify which metrics are collected from the host operating system. | `"cpu,cpu_info,os,net,logical_disk,cs,thermalzone,logon,system,service"` | ## Collectors available @@ -58,6 +61,7 @@ The following table describes the available collectors as part of this plugin. A | service | Exposes service statistics. | Windows | v2.1.6 | | memory | Exposes memory statistics. | Windows | v2.1.9 | | paging\_file | Exposes paging\_file statistics. | Windows | v2.1.9 | +| process | Exposes process statistics. | Windows | v2.1.9 | ## Getting Started