From 37f74113b39176f7ffe6753bddac39e0a45d17b2 Mon Sep 17 00:00:00 2001 From: Arya Kiran Date: Tue, 22 Aug 2023 18:01:27 +0530 Subject: [PATCH] add prometheus node exporter to ansible --- all/playbook.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/all/playbook.yaml b/all/playbook.yaml index 39c54e7..bbf51b8 100644 --- a/all/playbook.yaml +++ b/all/playbook.yaml @@ -20,6 +20,8 @@ - btop - iperf3 - neofetch + - tmux + - prometheus-node-exporter - name: Enable VNStat service ansible.builtin.service: name: vnstat @@ -30,6 +32,11 @@ name: chrony enabled: true state: started + - name: Enable Prometheus Node Exporter service + ansible.builtin.service: + name: prometheus-node-exporter + enabled: true + state: started - name: Sysctl hosts: all tasks: