20 lines
519 B
Plaintext
20 lines
519 B
Plaintext
# -*- mode: conf -*-
|
|
|
|
[Unit]
|
|
Description=The Prometheus monitoring system and time series database.
|
|
Documentation=https://prometheus.io
|
|
After=network.target
|
|
|
|
[Service]
|
|
EnvironmentFile=-/etc/default/prometheus
|
|
User=prometheus
|
|
ExecStart=/usr/bin/prometheus \
|
|
--web.console.libraries=/usr/share/prometheus/console_libraries \
|
|
--web.console.templates=/usr/share/prometheus/consoles \
|
|
$PROMETHEUS_OPTS
|
|
ExecReload=/bin/kill -HUP $MAINPID
|
|
Restart=on-failure
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|