summaryrefslogtreecommitdiff
path: root/roles/monitoring/prometheus/exporter/smokeping/templates/service.j2
diff options
context:
space:
mode:
Diffstat (limited to 'roles/monitoring/prometheus/exporter/smokeping/templates/service.j2')
-rw-r--r--roles/monitoring/prometheus/exporter/smokeping/templates/service.j230
1 files changed, 30 insertions, 0 deletions
diff --git a/roles/monitoring/prometheus/exporter/smokeping/templates/service.j2 b/roles/monitoring/prometheus/exporter/smokeping/templates/service.j2
new file mode 100644
index 00000000..5250f752
--- /dev/null
+++ b/roles/monitoring/prometheus/exporter/smokeping/templates/service.j2
@@ -0,0 +1,30 @@
+[Unit]
+Description=Prometheus smokeping prober
+
+[Service]
+Restart=always
+User=prometheus-exporter
+ExecStart=/usr/bin/prometheus-smokeping-prober --web.listen-address="127.0.0.1:9374" --config.file /etc/prometheus/exporter/smokeping/config.yml
+
+# systemd hardening-options
+AmbientCapabilities=CAP_NET_RAW
+CapabilityBoundingSet=CAP_NET_RAW
+DeviceAllow=/dev/null rw
+DevicePolicy=strict
+LockPersonality=true
+MemoryDenyWriteExecute=true
+NoNewPrivileges=true
+PrivateDevices=true
+PrivateTmp=true
+ProtectControlGroups=true
+ProtectHome=true
+ProtectKernelModules=true
+ProtectKernelTunables=true
+ProtectSystem=strict
+RemoveIPC=true
+RestrictNamespaces=true
+RestrictRealtime=true
+SystemCallArchitectures=native
+
+[Install]
+WantedBy=multi-user.target