From a7f837c47621f01723feb96f5fd0d54a13376a01 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Tue, 27 Jul 2021 22:19:18 +0200 Subject: add nut aka UPS to prometheus monitoring --- .../prometheus/exporter/nut/templates/service.j2 | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 roles/monitoring/prometheus/exporter/nut/templates/service.j2 (limited to 'roles/monitoring/prometheus/exporter/nut/templates/service.j2') diff --git a/roles/monitoring/prometheus/exporter/nut/templates/service.j2 b/roles/monitoring/prometheus/exporter/nut/templates/service.j2 new file mode 100644 index 00000000..ffafcb3c --- /dev/null +++ b/roles/monitoring/prometheus/exporter/nut/templates/service.j2 @@ -0,0 +1,30 @@ +[Unit] +Description=Prometheus nut exporter + +[Service] +Restart=always +User=prometheus-exporter +ExecStart=/usr/bin/prometheus-nut-exporter --web.listen-address="127.0.0.1:9199" + +# 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