prometheus/docker-compose.yml

97 lines
2.3 KiB
YAML
Raw Normal View History

version: '3'
2015-08-18 16:58:23 +02:00
volumes:
prometheus_data: {}
grafana_data: {}
networks:
front-tier:
back-tier:
services:
prometheus:
image: prom/prometheus
volumes:
- ./prometheus/:/etc/prometheus/
- prometheus_data:/prometheus
command:
- '-config.file=/etc/prometheus/prometheus.yml'
- '-storage.local.path=/prometheus'
2016-07-27 10:09:16 +02:00
- '-alertmanager.url=http://alertmanager:9093'
- '-web.console.libraries=/usr/share/prometheus/console_libraries'
- '-web.console.templates=/usr/share/prometheus/consoles'
expose:
- 9090
2016-07-27 12:27:31 +02:00
ports:
- 9090:9090
links:
- cadvisor:cadvisor
- alertmanager:alertmanager
depends_on:
- cadvisor
networks:
- back-tier
2017-08-28 01:43:02 +02:00
restart: always
deploy:
placement:
constraints:
2017-09-29 07:36:33 +02:00
- node.hostname == <hostname where the prometheus config files are located>
node-exporter:
image: prom/node-exporter
volumes:
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /:/rootfs:ro
command: '--path.procfs=/host/proc --path.sysfs=/host/sys --collector.filesystem.ignored-mount-points="^(/rootfs|/host|)/(sys|proc|dev|host|etc)($$|/)" --collector.filesystem.ignored-fs-types="^(sys|proc|auto|cgroup|devpts|ns|au|fuse\.lxc|mqueue)(fs|)$$"'
expose:
- 9100
networks:
- back-tier
2017-08-28 01:45:57 +02:00
restart: always
deploy:
mode: global
alertmanager:
image: prom/alertmanager
ports:
- 9093:9093
volumes:
- ./alertmanager/:/etc/alertmanager/
networks:
- back-tier
2017-08-28 01:43:02 +02:00
restart: always
command:
- '-config.file=/etc/alertmanager/config.yml'
- '-storage.path=/alertmanager'
deploy:
placement:
constraints:
2017-09-29 07:36:33 +02:00
- node.hostname == <hostname where alertmanager config files are located>
cadvisor:
image: google/cadvisor
volumes:
- /:/rootfs:ro
- /var/run:/var/run:rw
- /sys:/sys:ro
- /var/lib/docker/:/var/lib/docker:ro
expose:
- 8080
networks:
- back-tier
2017-08-28 01:43:02 +02:00
restart: always
deploy:
mode: global
grafana:
2016-07-13 15:47:57 +02:00
image: grafana/grafana
depends_on:
- prometheus
ports:
- 3000:3000
volumes:
- grafana_data:/var/lib/grafana
env_file:
- config.monitoring
networks:
- back-tier
2017-08-28 01:43:02 +02:00
- front-tier