Skip to content

Commit 66cd359

Browse files
committed
ENH: Add node exporter to VM
Install node exporter to VM. It does not require any configuration
1 parent 6f26ac5 commit 66cd359

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

chatops_deployment/ansible/configure.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,14 @@
5050
tags:
5151
- systemd_exporter
5252

53+
- name: Set up node exporters
54+
hosts: stack
55+
gather_facts: false
56+
roles:
57+
- role: node_exporter
58+
tags:
59+
- node_exporter
60+
5361
- name: Configure Grafana
5462
hosts: stack
5563
gather_facts: false
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
- name: Install Prometheus node exporter
3+
become: true
4+
ansible.builtin.apt:
5+
name: prometheus-node-exporter
6+
update_cache: true
7+
state: latest # noqa: package-latest

0 commit comments

Comments
 (0)