#!/sbin/openrc-run
name="prometheus"
description="prometheus monitoring system & time series database"
supervisor=supervise-daemon
supervise_daemon_args="-1 /var/log/prometheus.log -2 /var/log/prometheus.log"
command=/usr/bin/prometheus
command_args="--config.file=$config_file \
--storage.tsdb.path=$storage_path"
command_user="prometheus:prometheus"
pidfile="/run/${RC_SVCNAME}.pid"
start_pre() {
checkpath -f "/var/log/prometheus.log" -m 644 -o prometheus:prometheus
checkpath -f "$config_file" -m 740 -o prometheus:prometheus
checkpath -d "$storage_path" -m 755 -o prometheus:prometheus
}