2017-08-11 11:53:45 +02:00
|
|
|
version: '3'
|
2015-08-18 16:58:23 +02:00
|
|
|
|
2016-07-13 14:33:55 +02:00
|
|
|
volumes:
|
2017-08-11 11:53:45 +02:00
|
|
|
prometheus-config:
|
|
|
|
external:
|
|
|
|
name: prometheus-config
|
|
|
|
prometheus-data:
|
|
|
|
grafana-data:
|
|
|
|
alertmanager-config:
|
|
|
|
external:
|
|
|
|
name: alertmanager-config
|
2015-08-18 14:36:46 +02:00
|
|
|
|
2016-07-14 09:21:08 +02:00
|
|
|
networks:
|
|
|
|
front-tier:
|
|
|
|
back-tier:
|
|
|
|
|
2016-07-13 14:33:55 +02:00
|
|
|
services:
|
|
|
|
prometheus:
|
|
|
|
image: prom/prometheus
|
2016-07-14 14:19:55 +02:00
|
|
|
container_name: prometheus
|
2016-07-13 14:33:55 +02:00
|
|
|
volumes:
|
2017-08-11 11:53:45 +02:00
|
|
|
- prometheus-config:/etc/prometheus/
|
|
|
|
- prometheus-data:/prometheus
|
2016-07-13 14:33:55 +02:00
|
|
|
command:
|
|
|
|
- '-config.file=/etc/prometheus/prometheus.yml'
|
|
|
|
- '-storage.local.path=/prometheus'
|
2016-07-27 10:09:16 +02:00
|
|
|
- '-alertmanager.url=http://alertmanager:9093'
|
2016-07-27 12:27:31 +02:00
|
|
|
ports:
|
|
|
|
- 9090:9090
|
2016-07-13 14:33:55 +02:00
|
|
|
depends_on:
|
|
|
|
- cadvisor
|
2016-07-14 09:21:08 +02:00
|
|
|
networks:
|
|
|
|
- back-tier
|
2017-08-11 11:53:45 +02:00
|
|
|
deploy:
|
|
|
|
placement:
|
|
|
|
constraints:
|
|
|
|
- node.role == manager
|
|
|
|
- node.hostname == node1
|
2016-07-13 14:33:55 +02:00
|
|
|
node-exporter:
|
2017-03-01 08:49:36 +01:00
|
|
|
container_name: node-exporter
|
2016-07-13 14:33:55 +02:00
|
|
|
image: prom/node-exporter
|
2017-04-16 08:29:29 +02:00
|
|
|
volumes:
|
|
|
|
- /proc:/host/proc:ro
|
|
|
|
- /sys:/host/sys:ro
|
|
|
|
- /:/rootfs:ro
|
|
|
|
command: '-collector.procfs=/host/proc -collector.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|)$$"'
|
2016-07-13 14:33:55 +02:00
|
|
|
expose:
|
|
|
|
- 9100
|
2016-07-14 09:21:08 +02:00
|
|
|
networks:
|
|
|
|
- back-tier
|
2017-08-11 11:53:45 +02:00
|
|
|
deploy:
|
|
|
|
# alertmanager:
|
|
|
|
# image: prom/alertmanager
|
|
|
|
# ports:
|
|
|
|
# - 9093:9093
|
|
|
|
# volumes:
|
|
|
|
# - alertmanager-config:/etc/alertmanager/
|
|
|
|
# networks:
|
|
|
|
# - back-tier
|
|
|
|
# command:
|
|
|
|
# - '-config.file=/etc/alertmanager/config.yml'
|
|
|
|
# - '-storage.path=/alertmanager'
|
2016-07-13 14:33:55 +02:00
|
|
|
cadvisor:
|
|
|
|
image: google/cadvisor
|
|
|
|
volumes:
|
|
|
|
- /:/rootfs:ro
|
|
|
|
- /var/run:/var/run:rw
|
|
|
|
- /sys:/sys:ro
|
|
|
|
- /var/lib/docker/:/var/lib/docker:ro
|
2016-07-14 09:21:08 +02:00
|
|
|
networks:
|
|
|
|
- back-tier
|
2017-08-11 11:53:45 +02:00
|
|
|
deploy:
|
|
|
|
mode: global
|
2016-07-13 14:33:55 +02:00
|
|
|
grafana:
|
2016-07-13 15:47:57 +02:00
|
|
|
image: grafana/grafana
|
2016-07-13 14:33:55 +02:00
|
|
|
depends_on:
|
|
|
|
- prometheus
|
|
|
|
ports:
|
|
|
|
- 3000:3000
|
|
|
|
volumes:
|
2017-08-11 11:53:45 +02:00
|
|
|
- grafana-data:/var/lib/grafana
|
2016-07-13 14:33:55 +02:00
|
|
|
env_file:
|
|
|
|
- config.monitoring
|
2016-07-14 09:21:08 +02:00
|
|
|
networks:
|
|
|
|
- back-tier
|
|
|
|
- front-tier
|