31 lines
783 B
SYSTEMD
31 lines
783 B
SYSTEMD
|
[Unit]
|
||
|
Description=Monitoring system and time series database
|
||
|
Documentation=https://prometheus.io/docs/introduction/overview/
|
||
|
Wants=network-online.target
|
||
|
After=network-online.target
|
||
|
|
||
|
[Service]
|
||
|
# added automatically, for details please see
|
||
|
# https://en.opensuse.org/openSUSE:Security_Features#Systemd_hardening_effort
|
||
|
ProtectSystem=full
|
||
|
ProtectHome=true
|
||
|
PrivateDevices=true
|
||
|
ProtectHostname=true
|
||
|
ProtectClock=true
|
||
|
ProtectKernelTunables=true
|
||
|
ProtectKernelModules=true
|
||
|
ProtectKernelLogs=true
|
||
|
ProtectControlGroups=true
|
||
|
RestrictRealtime=true
|
||
|
# end of automatic additions
|
||
|
Restart=always
|
||
|
User=prometheus
|
||
|
EnvironmentFile=-/etc/sysconfig/prometheus
|
||
|
ExecStart=/usr/bin/prometheus $ARGS
|
||
|
ExecReload=/bin/kill -HUP $MAINPID
|
||
|
TimeoutStopSec=20s
|
||
|
SendSIGKILL=no
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|