From b5406d18de64f273cbebb3875a84bc31074f0f00 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Thu, 10 Nov 2022 19:31:09 +0100 Subject: prometheus: add exporter for bind --- .../prometheus/exporter/bind/templates/service.j2 | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 roles/monitoring/prometheus/exporter/bind/templates/service.j2 (limited to 'roles/monitoring/prometheus/exporter/bind/templates') diff --git a/roles/monitoring/prometheus/exporter/bind/templates/service.j2 b/roles/monitoring/prometheus/exporter/bind/templates/service.j2 new file mode 100644 index 00000000..853fee18 --- /dev/null +++ b/roles/monitoring/prometheus/exporter/bind/templates/service.j2 @@ -0,0 +1,30 @@ +[Unit] +Description=Prometheus bind exporter + +[Service] +Restart=always +User=prometheus-exporter +ExecStart=/usr/bin/prometheus-bind-exporter --web.listen-address="127.0.0.1:9119" --bind.stats-version="{{ prometheus_exporter_bind_stats_version }}" --bind.stats-groups="{{ prometheus_exporter_bind_stats_groups | join(',') }}" + +# systemd hardening-options +AmbientCapabilities= +CapabilityBoundingSet= +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 -- cgit v1.2.3