From 984c86a474ec4425badae9fa42637a43ae16686b Mon Sep 17 00:00:00 2001 From: "Eric D. Schabell" Date: Fri, 28 Nov 2025 12:45:23 +0100 Subject: [PATCH] Adjusted config option table and cleanup of disk io metrics input plugin doc. Fixes #2235. Signed-off-by: Eric D. Schabell --- pipeline/inputs/disk-io-metrics.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pipeline/inputs/disk-io-metrics.md b/pipeline/inputs/disk-io-metrics.md index 11310cac9..23877824e 100644 --- a/pipeline/inputs/disk-io-metrics.md +++ b/pipeline/inputs/disk-io-metrics.md @@ -10,10 +10,10 @@ The plugin supports the following configuration parameters: | Key | Description | Default | |:----------------|:----------------------------------------------------------------------------------------------------------------------------------|:----------| -| `Interval_Sec` | Polling interval (seconds). | `1` | -| `Interval_NSec` | Polling interval (nanosecond). | `0` | -| `Dev_Name` | Device name to limit the target (for example, `sda`). If not set, `in_disk` gathers information from all of disks and partitions. | all disks | -| `Threaded` | Indicates whether to run this input in its own [thread](../../administration/multithreading.md#inputs). | `false` | +| `dev_name` | Device name to limit the target (for example, `sda`). If not set, `in_disk` gathers information from all of disks and partitions. | all disks | +| `interval_nsec` | Polling interval in nanoseconds. | `0` | +| `interval_sec` | Polling interval in seconds. | `1` | +| `threaded` | Indicates whether to run this input in its own [thread](../../administration/multithreading.md#inputs). | `false` | ## Get started @@ -76,6 +76,6 @@ pipeline: {% endtab %} {% endtabs %} -Total interval (sec) = `Interval_Sec` + `(Interval_Nsec` / 1000000000) +Total interval (sec) = `interval_sec` + (`interval_nsec` / 1000000000) For example: `1.5s` = `1s` + `500000000ns`