17 lines
399 B
YAML
17 lines
399 B
YAML
---
|
|
- 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
|
|
#
|