Add a stack for prom node exporter and its dashboard in monitoring stack (#696)

* Add a stack for Prometheus node exporter

* Add node exporter dashboard to monitoring stack
This commit is contained in:
prathamesh0
2023-12-21 15:15:03 +05:30
committed by GitHub
parent 38622fb33c
commit a57b0cdd26
7 changed files with 23876 additions and 6 deletions
@@ -0,0 +1,16 @@
version: '3.8'
services:
node-exporter:
image: prom/node-exporter:latest
restart: unless-stopped
command:
- '--path.rootfs=/host'
- '--collector.systemd'
- '--collector.processes'
network_mode: host
pid: host
ports:
- 9100
volumes:
- '/:/host:ro,rslave'