diff options
author | Martin Matuska <mm@FreeBSD.org> | 2021-07-07 17:45:52 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2021-07-07 18:15:12 +0000 |
commit | 48b4fe0503282f03d25e23f44109c5cb6d450f7c (patch) | |
tree | ecec63cb24836918c6f54d41bf3e9ee32ebe0bda /cddl/Makefile | |
parent | b1e806c0ed960e1eb9ee889c7d0df3c168290c4f (diff) | |
download | src-48b4fe0503282f03d25e23f44109c5cb6d450f7c.tar.gz src-48b4fe0503282f03d25e23f44109c5cb6d450f7c.zip |
zfs: attach zpool_influxdb to build
From the zpool_influxdb.8 manual page:
zpool_influxdb produces InfluxDB-line-protocol-compatible metrics from
zpools. Like the zpool command, zpool_influxdb reads the current pool
status and statistics. Unlike the zpool command which is intended for
humans, zpool_influxdb formats the output in the InfluxDB line protocol.
The expected use is as a plugin to a metrics collector or aggregator,
such as Telegraf.
zpool_influxdb is installed into /usr/libexec/zfs/
Differential revision: https://reviews.freebsd.org/D31094
MFC after: 3 days
Diffstat (limited to 'cddl/Makefile')
-rw-r--r-- | cddl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cddl/Makefile b/cddl/Makefile index 7b9d13146afa..284a370c0167 100644 --- a/cddl/Makefile +++ b/cddl/Makefile @@ -3,7 +3,7 @@ .include <src.opts.mk> SUBDIR= lib .WAIT \ - sbin share usr.bin usr.sbin + sbin share usr.bin usr.libexec usr.sbin SUBDIR.${MK_TESTS}+= tests |