37 lines
867 B
YAML
37 lines
867 B
YAML
version: '2.1'
|
|
|
|
services:
|
|
|
|
nodeexporter:
|
|
image: prom/node-exporter:v0.18.1
|
|
container_name: nodeexporter
|
|
volumes:
|
|
- /proc:/host/proc:ro
|
|
- /sys:/host/sys:ro
|
|
- /:/rootfs:ro
|
|
command:
|
|
- '--path.procfs=/host/proc'
|
|
- '--path.rootfs=/rootfs'
|
|
- '--path.sysfs=/host/sys'
|
|
- '--collector.filesystem.ignored-mount-points=^/(sys|proc|dev|host|etc)($$|/)'
|
|
restart: unless-stopped
|
|
network_mode: host
|
|
labels:
|
|
org.label-schema.group: "monitoring"
|
|
|
|
cadvisor:
|
|
image: gcr.io/google-containers/cadvisor:v0.34.0
|
|
container_name: cadvisor
|
|
volumes:
|
|
- /:/rootfs:ro
|
|
- /var/run:/var/run:rw
|
|
- /sys:/sys:ro
|
|
- /var/lib/docker/:/var/lib/docker:ro
|
|
- /cgroup:/cgroup:ro
|
|
restart: unless-stopped
|
|
network_mode: host
|
|
labels:
|
|
org.label-schema.group: "monitoring"
|
|
|
|
|