mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-04 01:37:34 -08:00
This is a prometheus exporter for nftables metrics. Signed-off-by: William Hubbs <williamh@gentoo.org>
16 lines
431 B
Plaintext
16 lines
431 B
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 2023 Gentoo authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
description="Prometheus nftables metrics exporter"
|
|
|
|
command="/usr/bin/nftables-exporter"
|
|
command_background="true"
|
|
error_log="/var/log/nftables-exporter/nftables-exporter.log"
|
|
output_log="/var/log/nftables-exporter/nftables-exporter.log"
|
|
pidfile=${pidfile:-"/run/nftables_exporter.pid"}
|
|
|
|
depend() {
|
|
after net
|
|
}
|