summaryrefslogtreecommitdiff
path: root/roles/monitoring/prometheus/exporter/base/templates
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2021-05-30 23:24:32 +0200
committerChristian Pointner <equinox@spreadspace.org>2021-06-20 01:44:16 +0200
commitacfdc3ae8545177547fa75510cb9e56e0b909156 (patch)
treed8bbb422a0d4fe733b0f8895ca7128555ef0f089 /roles/monitoring/prometheus/exporter/base/templates
parentprometheus: initial simple server role (diff)
prometheus basic exporter base role
Diffstat (limited to 'roles/monitoring/prometheus/exporter/base/templates')
-rw-r--r--roles/monitoring/prometheus/exporter/base/templates/service.j231
1 files changed, 31 insertions, 0 deletions
diff --git a/roles/monitoring/prometheus/exporter/base/templates/service.j2 b/roles/monitoring/prometheus/exporter/base/templates/service.j2
new file mode 100644
index 00000000..6069fc79
--- /dev/null
+++ b/roles/monitoring/prometheus/exporter/base/templates/service.j2
@@ -0,0 +1,31 @@
+[Unit]
+Description=Prometheus exporter proxy
+
+[Service]
+Restart=always
+User=prometheus-exporter
+ExecStart=/usr/bin/prometheus-exporter-exporter --config.dirs=/etc/prometheus/exporter/enabled --config.file="" --web.listen-address="{{ prometheus_exporter_listen }}"
+
+# systemd hardening-options
+AmbientCapabilities=
+CapabilityBoundingSet=
+DeviceAllow=/dev/null rw
+DevicePolicy=strict
+LockPersonality=true
+MemoryDenyWriteExecute=true
+NoNewPrivileges=true
+PrivateDevices=true
+PrivateTmp=true
+PrivateUsers=true
+ProtectControlGroups=true
+ProtectHome=true
+ProtectKernelModules=true
+ProtectKernelTunables=true
+ProtectSystem=strict
+RemoveIPC=true
+RestrictNamespaces=true
+RestrictRealtime=true
+SystemCallArchitectures=native
+
+[Install]
+WantedBy=multi-user.target