mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 02:20:59 +03:00
e9527d44e6
A zpool_influxdb command is introduced to ease the collection of zpool statistics into the InfluxDB time-series database. Examples are given on how to integrate with the telegraf statistics aggregator, a companion to influxdb. Finally, a grafana dashboard template is included to show how pool latency distributions can be visualized in a ZFS + telegraf + influxdb + grafana environment. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Ryan Moeller <ryan@iXsystems.com> Signed-off-by: Richard Elling <Richard.Elling@RichardElling.com> Closes #10786
24 lines
1.1 KiB
Plaintext
24 lines
1.1 KiB
Plaintext
# # Read metrics from zpool_influxdb
|
|
[[inputs.execd]]
|
|
# ## default installation location for zpool_influxdb command
|
|
command = ["/usr/local/bin/zpool_influxdb", "--execd"]
|
|
|
|
## Define how the process is signaled on each collection interval.
|
|
## Valid values are:
|
|
## "none" : Do not signal anything. (Recommended for service inputs)
|
|
## The process must output metrics by itself.
|
|
## "STDIN" : Send a newline on STDIN. (Recommended for gather inputs)
|
|
## "SIGHUP" : Send a HUP signal. Not available on Windows. (not recommended)
|
|
## "SIGUSR1" : Send a USR1 signal. Not available on Windows.
|
|
## "SIGUSR2" : Send a USR2 signal. Not available on Windows.
|
|
signal = "STDIN"
|
|
|
|
## Delay before the process is restarted after an unexpected termination
|
|
restart_delay = "10s"
|
|
|
|
## Data format to consume.
|
|
## Each data format has its own unique set of configuration options, read
|
|
## more about them here:
|
|
## https://github.com/influxdata/telegraf/blob/master/docs/DATA_FORMATS_INPUT.md
|
|
data_format = "influx"
|