2023-08-31 02:59:09 +00:00
|
|
|
#!/command/with-contenv bash
|
2023-04-08 21:07:11 +00:00
|
|
|
# shellcheck shell=bash disable=SC1091
|
2023-03-28 20:01:27 +00:00
|
|
|
|
2023-04-08 21:07:11 +00:00
|
|
|
source /scripts/common
|
|
|
|
|
|
|
|
if chk_enabled "$PROMETHEUS_ENABLE"; then
|
2023-03-28 20:01:27 +00:00
|
|
|
while [[ ! -f /run/readsb-prometheus.prom ]]
|
|
|
|
do
|
|
|
|
sleep 1
|
|
|
|
done
|
2023-05-05 08:16:32 +00:00
|
|
|
trap "pkill -P $$ || true; s6wrap --timestamps --prepend=prometheus-readsb --quiet --args echo 'service stopping'; exit 0" SIGTERM SIGINT SIGHUP SIGQUIT
|
2024-02-19 11:52:06 +00:00
|
|
|
echo -e "HTTP/1.1 200 OK\nContent-Type: text/plain\n\n$(cat /run/readsb-prometheus.prom)" | ncat -l "${PROMETHEUSPORT:-9274}" > /dev/null 2>&1 &
|
2023-05-05 08:16:32 +00:00
|
|
|
wait
|
2023-03-28 20:01:27 +00:00
|
|
|
else
|
2023-05-05 08:16:32 +00:00
|
|
|
exec sleep infinity
|
2023-03-28 20:01:27 +00:00
|
|
|
fi
|