mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 05:31:25 +02:00
15 lines
453 B
Plaintext
15 lines
453 B
Plaintext
#!/sbin/openrc-run
|
|
name="pushgateway"
|
|
description="Prometheus push acceptor for ephemeral and batch jobs"
|
|
supervisor=supervise-daemon
|
|
command=/usr/bin/pushgateway
|
|
command_args="--web.listen-address=$pushgateway_bind_address"
|
|
command_user="prometheus:prometheus"
|
|
|
|
start_pre() {
|
|
[ -n "$output_log" ] && checkpath -f "$output_log" \
|
|
-m 644 -o prometheus:prometheus
|
|
[ -n "$error_log" ] && checkpath -f "$error_log" \
|
|
-m 644 -o prometheus:prometheus
|
|
}
|