~dricottone/huttese-apk

ref: d07f7dbd5f418138656097de2f5e36f7a54d9c5b huttese-apk/sr.ht/prometheus/prometheus.initd -rw-r--r-- 654 bytes
d07f7dbd — Drew DeVault metrics.sr.ht: fix check function 4 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/sbin/openrc-run
name="prometheus"
description="prometheus monitoring system & time series database"
supervisor=supervise-daemon
command=/usr/bin/prometheus
command_args="--config.file=$prometheus_config_file \
	--storage.tsdb.path=$prometheus_storage_path \
	--storage.tsdb.retention.time=$prometheus_retention_time"
command_user="prometheus:prometheus"
pidfile="/run/${RC_SVCNAME}.pid"

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
	checkpath -d "$prometheus_storage_path" -m 755 -o prometheus:prometheus
}