RouxAntoine 6dc15e681c
All checks were successful
Main / build (push) Successful in 1m4s
feat: add prometheus exporter
2025-03-10 01:00:09 +01:00

10 lines
308 B
Bash

#!/bin/sh
envsubst < /etc/keepalived/keepalived.template.conf > /etc/keepalived/keepalived.conf
keepalived-exporter -ka.pid-path /var/run/keepalived/keepalived.pid -web.listen-address :9187 -web.telemetry-path /metrics &
mkdir -p /var/run/keepalived
echo "$!" > /var/run/keepalived/exporter.pid
exec "$@"