From eed21034efae03ee661e06122f96dc01e53afaa4 Mon Sep 17 00:00:00 2001 From: Gabriel Arakaki Giovanini Date: Mon, 12 Dec 2022 22:07:14 +0100 Subject: feat: Add prometheus-postgres-exporter --- .../postgres-exporter.initd | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 apks/prometheus-postgres-exporter/postgres-exporter.initd (limited to 'apks/prometheus-postgres-exporter/postgres-exporter.initd') diff --git a/apks/prometheus-postgres-exporter/postgres-exporter.initd b/apks/prometheus-postgres-exporter/postgres-exporter.initd new file mode 100755 index 0000000..8955c15 --- /dev/null +++ b/apks/prometheus-postgres-exporter/postgres-exporter.initd @@ -0,0 +1,22 @@ +#!/sbin/openrc-run +supervisor=supervise-daemon + +command="/usr/bin/postgres_exporter" +command_args="$ARGS" +command_background="yes" +command_user="prometheus:prometheus" + +export DATA_SOURCE_NAME +logdir="/var/log/prometheus" +error_log="$logdir/${SVCNAME}.log" +pidfile="/var/run/${SVCNAME}.pid" + +depend() { + need net + after firewall +} + +start_pre() { + checkpath -d -o $command_user -m755 $logdir + checkpath -f -o $command_user -m644 $error_log +} -- cgit v1.2.3