2022-06-12 23:07:59 +02:00
|
|
|
# {{ ansible_managed }}
|
|
|
|
services:
|
|
|
|
nodeexporter:
|
|
|
|
image: prom/node-exporter:{{ docker_nodeexporter_version }}
|
|
|
|
environment:
|
|
|
|
- TZ=Europe/Paris
|
|
|
|
volumes:
|
|
|
|
- /proc:/host/proc:ro
|
|
|
|
- /sys:/host/sys:ro
|
|
|
|
- /:/rootfs:ro
|
|
|
|
command:
|
|
|
|
- '--path.procfs=/host/proc'
|
|
|
|
- '--path.rootfs=/rootfs'
|
|
|
|
- '--path.sysfs=/host/sys'
|
2024-04-06 20:22:30 +02:00
|
|
|
- '--collector.filesystem.mount-points-exclude=^/(sys|proc|dev|host|etc|run)($$|/)'
|
2022-06-12 23:07:59 +02:00
|
|
|
restart: always
|
|
|
|
labels:
|
|
|
|
org.label-schema.group: "monitoring"
|
|
|
|
ports:
|
|
|
|
- {{ docker_nodeexporter_port }}:9100
|
|
|
|
|
|
|
|
|