mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +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
12 lines
265 B
Makefile
12 lines
265 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
bin_PROGRAMS = zpool_influxdb
|
|
|
|
zpool_influxdb_SOURCES = \
|
|
zpool_influxdb.c
|
|
|
|
zpool_influxdb_LDADD = \
|
|
$(top_builddir)/lib/libspl/libspl.la \
|
|
$(top_builddir)/lib/libnvpair/libnvpair.la \
|
|
$(top_builddir)/lib/libzfs/libzfs.la
|