diff --git a/plugins/inputs/intel_pmu/README.md b/plugins/inputs/intel_pmu/README.md index 1e585f602..7a70b5a28 100644 --- a/plugins/inputs/intel_pmu/README.md +++ b/plugins/inputs/intel_pmu/README.md @@ -27,6 +27,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details. ```toml @sample.conf # Intel Performance Monitoring Unit plugin exposes Intel PMU metrics available through Linux Perf subsystem +# This plugin ONLY supports Linux on amd64 [[inputs.intel_pmu]] ## List of filesystem locations of JSON files that contain PMU event definitions. event_definitions = ["/var/cache/pmu/GenuineIntel-6-55-4-core.json", "/var/cache/pmu/GenuineIntel-6-55-4-uncore.json"] diff --git a/plugins/inputs/intel_pmu/sample.conf b/plugins/inputs/intel_pmu/sample.conf index a94c63875..30fd22cb9 100644 --- a/plugins/inputs/intel_pmu/sample.conf +++ b/plugins/inputs/intel_pmu/sample.conf @@ -1,4 +1,5 @@ # Intel Performance Monitoring Unit plugin exposes Intel PMU metrics available through Linux Perf subsystem +# This plugin ONLY supports Linux on amd64 [[inputs.intel_pmu]] ## List of filesystem locations of JSON files that contain PMU event definitions. event_definitions = ["/var/cache/pmu/GenuineIntel-6-55-4-core.json", "/var/cache/pmu/GenuineIntel-6-55-4-uncore.json"] diff --git a/plugins/inputs/intel_rdt/README.md b/plugins/inputs/intel_rdt/README.md index 6314e4708..b04ff7523 100644 --- a/plugins/inputs/intel_rdt/README.md +++ b/plugins/inputs/intel_rdt/README.md @@ -104,6 +104,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details. ```toml @sample.conf # Read Intel RDT metrics +# This plugin ONLY supports non-Windows [[inputs.intel_rdt]] ## Optionally set sampling interval to Nx100ms. ## This value is propagated to pqos tool. Interval format is defined by pqos itself. diff --git a/plugins/inputs/intel_rdt/sample.conf b/plugins/inputs/intel_rdt/sample.conf index 15a125d91..79973b621 100644 --- a/plugins/inputs/intel_rdt/sample.conf +++ b/plugins/inputs/intel_rdt/sample.conf @@ -1,4 +1,5 @@ # Read Intel RDT metrics +# This plugin ONLY supports non-Windows [[inputs.intel_rdt]] ## Optionally set sampling interval to Nx100ms. ## This value is propagated to pqos tool. Interval format is defined by pqos itself. diff --git a/plugins/inputs/mdstat/README.md b/plugins/inputs/mdstat/README.md index cfed2d5d9..84a315407 100644 --- a/plugins/inputs/mdstat/README.md +++ b/plugins/inputs/mdstat/README.md @@ -26,6 +26,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details. ```toml @sample.conf # Get kernel statistics from /proc/mdstat +# This plugin ONLY supports Linux [[inputs.mdstat]] ## Sets file path ## If not specified, then default is /proc/mdstat diff --git a/plugins/inputs/mdstat/sample.conf b/plugins/inputs/mdstat/sample.conf index 040d1d690..68cd277c6 100644 --- a/plugins/inputs/mdstat/sample.conf +++ b/plugins/inputs/mdstat/sample.conf @@ -1,4 +1,5 @@ # Get kernel statistics from /proc/mdstat +# This plugin ONLY supports Linux [[inputs.mdstat]] ## Sets file path ## If not specified, then default is /proc/mdstat diff --git a/plugins/inputs/postfix/README.md b/plugins/inputs/postfix/README.md index e54f10220..34703c02c 100644 --- a/plugins/inputs/postfix/README.md +++ b/plugins/inputs/postfix/README.md @@ -20,6 +20,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details. ```toml @sample.conf # Measure postfix queue statistics +# This plugin ONLY supports non-Windows [[inputs.postfix]] ## Postfix queue directory. If not provided, telegraf will try to use ## 'postconf -h queue_directory' to determine it. diff --git a/plugins/inputs/postfix/sample.conf b/plugins/inputs/postfix/sample.conf index 72e4d1c18..c167f2236 100644 --- a/plugins/inputs/postfix/sample.conf +++ b/plugins/inputs/postfix/sample.conf @@ -1,4 +1,5 @@ # Measure postfix queue statistics +# This plugin ONLY supports non-Windows [[inputs.postfix]] ## Postfix queue directory. If not provided, telegraf will try to use ## 'postconf -h queue_directory' to determine it. diff --git a/plugins/inputs/ras/README.md b/plugins/inputs/ras/README.md index 6037bf16a..289c87653 100644 --- a/plugins/inputs/ras/README.md +++ b/plugins/inputs/ras/README.md @@ -19,6 +19,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details. ```toml @sample.conf # RAS plugin exposes counter metrics for Machine Check Errors provided by RASDaemon (sqlite3 output is required). +# This plugin ONLY supports Linux on 386, amd64, arm, and arm64 [[inputs.ras]] ## Optional path to RASDaemon sqlite3 database. ## Default: /var/lib/rasdaemon/ras-mc_event.db diff --git a/plugins/inputs/ras/sample.conf b/plugins/inputs/ras/sample.conf index 7e0c649d2..ea318c03a 100644 --- a/plugins/inputs/ras/sample.conf +++ b/plugins/inputs/ras/sample.conf @@ -1,4 +1,5 @@ # RAS plugin exposes counter metrics for Machine Check Errors provided by RASDaemon (sqlite3 output is required). +# This plugin ONLY supports Linux on 386, amd64, arm, and arm64 [[inputs.ras]] ## Optional path to RASDaemon sqlite3 database. ## Default: /var/lib/rasdaemon/ras-mc_event.db diff --git a/plugins/inputs/sensors/README.md b/plugins/inputs/sensors/README.md index 333de7e73..af1845468 100644 --- a/plugins/inputs/sensors/README.md +++ b/plugins/inputs/sensors/README.md @@ -19,6 +19,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details. ```toml @sample.conf # Monitor sensors, requires lm-sensors package +# This plugin ONLY supports Linux [[inputs.sensors]] ## Remove numbers from field names. ## If true, a field name like 'temp1_input' will be changed to 'temp_input'. diff --git a/plugins/inputs/sensors/sample.conf b/plugins/inputs/sensors/sample.conf index 7892452fd..6ecd4cab0 100644 --- a/plugins/inputs/sensors/sample.conf +++ b/plugins/inputs/sensors/sample.conf @@ -1,4 +1,5 @@ # Monitor sensors, requires lm-sensors package +# This plugin ONLY supports Linux [[inputs.sensors]] ## Remove numbers from field names. ## If true, a field name like 'temp1_input' will be changed to 'temp_input'. diff --git a/plugins/inputs/slab/README.md b/plugins/inputs/slab/README.md index 31197055b..5d8098e66 100644 --- a/plugins/inputs/slab/README.md +++ b/plugins/inputs/slab/README.md @@ -27,6 +27,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details. ```toml @sample.conf # Get slab statistics from procfs +# This plugin ONLY supports Linux [[inputs.slab]] # no configuration - please see the plugin's README for steps to configure # sudo properly diff --git a/plugins/inputs/slab/sample.conf b/plugins/inputs/slab/sample.conf index d606f2dcd..4b8cd4def 100644 --- a/plugins/inputs/slab/sample.conf +++ b/plugins/inputs/slab/sample.conf @@ -1,4 +1,5 @@ # Get slab statistics from procfs +# This plugin ONLY supports Linux [[inputs.slab]] # no configuration - please see the plugin's README for steps to configure # sudo properly diff --git a/plugins/inputs/socketstat/README.md b/plugins/inputs/socketstat/README.md index 245d7447a..47e505126 100644 --- a/plugins/inputs/socketstat/README.md +++ b/plugins/inputs/socketstat/README.md @@ -22,6 +22,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details. ```toml @sample.conf # Gather indicators from established connections, using iproute2's ss command. +# This plugin ONLY supports non-Windows [[inputs.socketstat]] ## ss can display information about tcp, udp, raw, unix, packet, dccp and sctp sockets ## Specify here the types you want to gather diff --git a/plugins/inputs/socketstat/sample.conf b/plugins/inputs/socketstat/sample.conf index a2dba772f..24fc172d4 100644 --- a/plugins/inputs/socketstat/sample.conf +++ b/plugins/inputs/socketstat/sample.conf @@ -1,4 +1,5 @@ # Gather indicators from established connections, using iproute2's ss command. +# This plugin ONLY supports non-Windows [[inputs.socketstat]] ## ss can display information about tcp, udp, raw, unix, packet, dccp and sctp sockets ## Specify here the types you want to gather diff --git a/plugins/inputs/sysstat/README.md b/plugins/inputs/sysstat/README.md index 93c00f865..be3f205ef 100644 --- a/plugins/inputs/sysstat/README.md +++ b/plugins/inputs/sysstat/README.md @@ -19,6 +19,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details. ```toml @sample.conf # Sysstat metrics collector +# This plugin ONLY supports Linux [[inputs.sysstat]] ## Path to the sadc command. # diff --git a/plugins/inputs/sysstat/sample.conf b/plugins/inputs/sysstat/sample.conf index 01f8e73fc..a9c135118 100644 --- a/plugins/inputs/sysstat/sample.conf +++ b/plugins/inputs/sysstat/sample.conf @@ -1,4 +1,5 @@ # Sysstat metrics collector +# This plugin ONLY supports Linux [[inputs.sysstat]] ## Path to the sadc command. # diff --git a/plugins/inputs/varnish/README.md b/plugins/inputs/varnish/README.md index fdfa4e23a..158a1d67a 100644 --- a/plugins/inputs/varnish/README.md +++ b/plugins/inputs/varnish/README.md @@ -15,6 +15,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details. ```toml @sample.conf # A plugin to collect stats from Varnish HTTP Cache +# This plugin ONLY supports non-Windows [[inputs.varnish]] ## If running as a restricted user you can prepend sudo for additional access: #use_sudo = false diff --git a/plugins/inputs/varnish/sample.conf b/plugins/inputs/varnish/sample.conf index 0e59f9bad..8189d3ec9 100644 --- a/plugins/inputs/varnish/sample.conf +++ b/plugins/inputs/varnish/sample.conf @@ -1,4 +1,5 @@ # A plugin to collect stats from Varnish HTTP Cache +# This plugin ONLY supports non-Windows [[inputs.varnish]] ## If running as a restricted user you can prepend sudo for additional access: #use_sudo = false