chore: Specify distro support (part 3) (#12792)

This commit is contained in:
Joshua Powers 2023-03-06 04:18:43 -07:00 committed by GitHub
parent c44a2f133b
commit 8e5c2d0538
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
22 changed files with 22 additions and 0 deletions

View File

@ -51,6 +51,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details.
```toml @sample.conf ```toml @sample.conf
# Read specific statistics per cgroup # Read specific statistics per cgroup
# This plugin ONLY supports Linux
[[inputs.cgroup]] [[inputs.cgroup]]
## Directories in which to look for files, globs are supported. ## Directories in which to look for files, globs are supported.
## Consider restricting paths to the set of cgroups you really ## Consider restricting paths to the set of cgroups you really

View File

@ -1,4 +1,5 @@
# Read specific statistics per cgroup # Read specific statistics per cgroup
# This plugin ONLY supports Linux
[[inputs.cgroup]] [[inputs.cgroup]]
## Directories in which to look for files, globs are supported. ## Directories in which to look for files, globs are supported.
## Consider restricting paths to the set of cgroups you really ## Consider restricting paths to the set of cgroups you really

View File

@ -15,6 +15,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details.
```toml @sample.conf ```toml @sample.conf
# Read metrics about disk IO by device # Read metrics about disk IO by device
# This plugin ONLY supports Linux
[[inputs.diskio]] [[inputs.diskio]]
## By default, telegraf will gather stats for all devices including ## By default, telegraf will gather stats for all devices including
## disk partitions. ## disk partitions.

View File

@ -1,4 +1,5 @@
# Read metrics about disk IO by device # Read metrics about disk IO by device
# This plugin ONLY supports Linux
[[inputs.diskio]] [[inputs.diskio]]
## By default, telegraf will gather stats for all devices including ## By default, telegraf will gather stats for all devices including
## disk partitions. ## disk partitions.

View File

@ -22,6 +22,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details.
```toml @sample.conf ```toml @sample.conf
# Provide a native collection for dmsetup based statistics for dm-cache # Provide a native collection for dmsetup based statistics for dm-cache
# This plugin ONLY supports Linux
[[inputs.dmcache]] [[inputs.dmcache]]
## Whether to report per-device stats or not ## Whether to report per-device stats or not
per_device = true per_device = true

View File

@ -1,4 +1,5 @@
# Provide a native collection for dmsetup based statistics for dm-cache # Provide a native collection for dmsetup based statistics for dm-cache
# This plugin ONLY supports Linux
[[inputs.dmcache]] [[inputs.dmcache]]
## Whether to report per-device stats or not ## Whether to report per-device stats or not
per_device = true per_device = true

View File

@ -16,6 +16,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details.
```toml @sample.conf ```toml @sample.conf
# Returns ethtool statistics for given interfaces # Returns ethtool statistics for given interfaces
# This plugin ONLY supports Linux
[[inputs.ethtool]] [[inputs.ethtool]]
## List of interfaces to pull metrics for ## List of interfaces to pull metrics for
# interface_include = ["eth0"] # interface_include = ["eth0"]

View File

@ -1,4 +1,5 @@
# Returns ethtool statistics for given interfaces # Returns ethtool statistics for given interfaces
# This plugin ONLY supports Linux
[[inputs.ethtool]] [[inputs.ethtool]]
## List of interfaces to pull metrics for ## List of interfaces to pull metrics for
# interface_include = ["eth0"] # interface_include = ["eth0"]

View File

@ -19,6 +19,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details.
```toml @sample.conf ```toml @sample.conf
# Gets counters from all InfiniBand cards and ports installed # Gets counters from all InfiniBand cards and ports installed
# This plugin ONLY supports Linux
[[inputs.infiniband]] [[inputs.infiniband]]
# no configuration # no configuration
``` ```

View File

@ -1,3 +1,4 @@
# Gets counters from all InfiniBand cards and ports installed # Gets counters from all InfiniBand cards and ports installed
# This plugin ONLY supports Linux
[[inputs.infiniband]] [[inputs.infiniband]]
# no configuration # no configuration

View File

@ -53,6 +53,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details.
```toml @sample.conf ```toml @sample.conf
# Get kernel statistics from /proc/stat # Get kernel statistics from /proc/stat
# This plugin ONLY supports Linux
[[inputs.kernel]] [[inputs.kernel]]
# no configuration # no configuration
``` ```

View File

@ -1,3 +1,4 @@
# Get kernel statistics from /proc/stat # Get kernel statistics from /proc/stat
# This plugin ONLY supports Linux
[[inputs.kernel]] [[inputs.kernel]]
# no configuration # no configuration

View File

@ -18,6 +18,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details.
```toml @sample.conf ```toml @sample.conf
# Provides metrics about the state of a NATS server # Provides metrics about the state of a NATS server
# This plugin does NOT support FreeBSD
[[inputs.nats]] [[inputs.nats]]
## The address of the monitoring endpoint of the NATS server ## The address of the monitoring endpoint of the NATS server
server = "http://localhost:8222" server = "http://localhost:8222"

View File

@ -1,4 +1,5 @@
# Provides metrics about the state of a NATS server # Provides metrics about the state of a NATS server
# This plugin does NOT support FreeBSD
[[inputs.nats]] [[inputs.nats]]
## The address of the monitoring endpoint of the NATS server ## The address of the monitoring endpoint of the NATS server
server = "http://localhost:8222" server = "http://localhost:8222"

View File

@ -21,6 +21,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details.
```toml @sample.conf ```toml @sample.conf
# Get the number of processes and group them by status # Get the number of processes and group them by status
# This plugin ONLY supports non-Windows
[[inputs.processes]] [[inputs.processes]]
## Use sudo to run ps command on *BSD systems. Linux systems will read ## Use sudo to run ps command on *BSD systems. Linux systems will read
## /proc, so this does not apply there. ## /proc, so this does not apply there.

View File

@ -1,4 +1,5 @@
# Get the number of processes and group them by status # Get the number of processes and group them by status
# This plugin ONLY supports non-Windows
[[inputs.processes]] [[inputs.processes]]
## Use sudo to run ps command on *BSD systems. Linux systems will read ## Use sudo to run ps command on *BSD systems. Linux systems will read
## /proc, so this does not apply there. ## /proc, so this does not apply there.

View File

@ -17,6 +17,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details.
```toml @sample.conf ```toml @sample.conf
# Get synproxy counter statistics from procfs # Get synproxy counter statistics from procfs
# This plugin ONLY supports Linux
[[inputs.synproxy]] [[inputs.synproxy]]
# no configuration # no configuration
``` ```

View File

@ -1,3 +1,4 @@
# Get synproxy counter statistics from procfs # Get synproxy counter statistics from procfs
# This plugin ONLY supports Linux
[[inputs.synproxy]] [[inputs.synproxy]]
# no configuration # no configuration

View File

@ -16,6 +16,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details.
```toml @sample.conf ```toml @sample.conf
# Monitor wifi signal strength and quality # Monitor wifi signal strength and quality
# This plugin ONLY supports Linux
[[inputs.wireless]] [[inputs.wireless]]
## Sets 'proc' directory path ## Sets 'proc' directory path
## If not specified, then default is /proc ## If not specified, then default is /proc

View File

@ -1,4 +1,5 @@
# Monitor wifi signal strength and quality # Monitor wifi signal strength and quality
# This plugin ONLY supports Linux
[[inputs.wireless]] [[inputs.wireless]]
## Sets 'proc' directory path ## Sets 'proc' directory path
## If not specified, then default is /proc ## If not specified, then default is /proc

View File

@ -17,6 +17,7 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details.
```toml @sample.conf ```toml @sample.conf
# Read metrics of ZFS from arcstats, zfetchstats, vdev_cache_stats, pools and datasets # Read metrics of ZFS from arcstats, zfetchstats, vdev_cache_stats, pools and datasets
# This plugin ONLY supports Linux & FreeBSD
[[inputs.zfs]] [[inputs.zfs]]
## ZFS kstat path. Ignored on FreeBSD ## ZFS kstat path. Ignored on FreeBSD
## If not specified, then default is: ## If not specified, then default is:

View File

@ -1,4 +1,5 @@
# Read metrics of ZFS from arcstats, zfetchstats, vdev_cache_stats, pools and datasets # Read metrics of ZFS from arcstats, zfetchstats, vdev_cache_stats, pools and datasets
# This plugin ONLY supports Linux & FreeBSD
[[inputs.zfs]] [[inputs.zfs]]
## ZFS kstat path. Ignored on FreeBSD ## ZFS kstat path. Ignored on FreeBSD
## If not specified, then default is: ## If not specified, then default is: