From a0c61a653a2fd9884d6c7f8a0c59a800255ff32c Mon Sep 17 00:00:00 2001 From: "Eric D. Schabell" Date: Thu, 11 Dec 2025 13:42:22 +0100 Subject: [PATCH] in_windows_system_statistics: improve formatting in several sections of input plugin doc - Add periods to metric description sentences - Convert Notes section to info hint block - Fix "Windows-only" to "Windows only" - cleaned up duplicate warnings in hints sections Fixes #2139. Signed-off-by: Eric D. Schabell --- pipeline/inputs/windows-system-statistics.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pipeline/inputs/windows-system-statistics.md b/pipeline/inputs/windows-system-statistics.md index 963bf5c58..6b2c6f421 100644 --- a/pipeline/inputs/windows-system-statistics.md +++ b/pipeline/inputs/windows-system-statistics.md @@ -22,12 +22,12 @@ The plugin supports the following configuration parameters: The `winstat` plugin collects the following system statistics: -| Metric Category | Description | -|:----------------|:----------------------------------------------------------------------------| -| CPU | CPU usage percentage, including user and system time | -| Memory | Memory usage including total, available, and used memory | -| Disk | Disk I/O statistics including read/write operations and throughput | -| Network | Network interface statistics including bytes sent/received and packet counts | +| Metric Category | Description | +|:----------------|:------------------------------------------------------------------------------| +| CPU | CPU usage percentage, including user and system time. | +| Memory | Memory usage including total, available, and used memory. | +| Disk | Disk I/O statistics including read/write operations and throughput. | +| Network | Network interface statistics including bytes sent/received and packet counts. | ## Get started @@ -92,8 +92,8 @@ Total interval (sec) = `Interval_Sec` + (`Interval_NSec` / 1000000000) For example: `1.5s` = `1s` + `500000000ns` -## Notes +{% hint style="info" %} + +For Prometheus-based metrics collection on Windows, consider using the [Windows Exporter Metrics](windows-exporter-metrics.md) input plugin instead. -- The `winstat` plugin requires Windows Performance Counters access. Ensure Fluent Bit is running with appropriate permissions. -- This plugin is Windows-only and won't work on Linux, macOS, or other operating systems. -- For Prometheus-based metrics collection on Windows, consider using the [Windows Exporter Metrics](windows-exporter-metrics.md) input plugin instead. +{% endhint %}