add install for prometheus node exporter

This commit is contained in:
histausse 2021-09-05 22:35:10 +02:00
parent ebb0ade66d
commit 3d6da8f0a2
Signed by: histausse
GPG key ID: 67486F107F62E9E9

View file

@ -0,0 +1,17 @@
---
- name: Install Prometheus Node exporter
apt:
name:
- prometheus-node-exporter
state: latest
update_cache: true
register: apt_result
retries: 3
until: apt_result is succeeded
# TODO: add auth
#
# Create the file --web.config=/etc/node_exporter/config.yaml
# and add --web.config=/etc/node_exporter/config.yaml to
# the args in /etc/default/prometheus-node-exporter
#