2018-02-01 06:54:56 +00:00
|
|
|
version: "3.1"
|
2017-02-21 12:39:50 +00:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
prometheus_data: {}
|
|
|
|
grafana_data: {}
|
|
|
|
|
|
|
|
networks:
|
|
|
|
front-tier:
|
|
|
|
back-tier:
|
|
|
|
|
|
|
|
services:
|
|
|
|
prometheus:
|
2018-02-01 06:54:56 +00:00
|
|
|
image: prom/prometheus:v2.0.0
|
2017-02-21 12:39:50 +00:00
|
|
|
volumes:
|
|
|
|
- ./prometheus/:/etc/prometheus/
|
|
|
|
- prometheus_data:/prometheus
|
|
|
|
command:
|
2018-02-01 06:54:56 +00:00
|
|
|
- '--config.file=/etc/prometheus/prometheus.yml'
|
|
|
|
- '--storage.tsdb.path=/prometheus'
|
|
|
|
- '--web.console.libraries=/usr/share/prometheus/console_libraries'
|
|
|
|
- '--web.console.templates=/usr/share/prometheus/consoles'
|
2017-02-21 12:39:50 +00:00
|
|
|
ports:
|
|
|
|
- 9090:9090
|
|
|
|
links:
|
|
|
|
- metrics:metrics
|
|
|
|
networks:
|
|
|
|
- back-tier
|
|
|
|
|
|
|
|
grafana:
|
|
|
|
image: grafana/grafana
|
|
|
|
depends_on:
|
|
|
|
- prometheus
|
|
|
|
ports:
|
|
|
|
- 3000:3000
|
|
|
|
volumes:
|
|
|
|
- grafana_data:/var/lib/grafana
|
2018-03-08 09:21:08 +00:00
|
|
|
- ./grafana/provisioning/:/etc/grafana/provisioning/
|
2017-02-21 12:39:50 +00:00
|
|
|
env_file:
|
2018-03-08 09:21:08 +00:00
|
|
|
- ./grafana/config.monitoring
|
2017-02-21 12:39:50 +00:00
|
|
|
networks:
|
|
|
|
- back-tier
|
|
|
|
- front-tier
|
|
|
|
|
|
|
|
metrics:
|
|
|
|
tty: true
|
|
|
|
stdin_open: true
|
|
|
|
expose:
|
2018-10-01 10:48:41 +00:00
|
|
|
- 9115
|
2017-08-03 10:17:36 +00:00
|
|
|
ports:
|
2018-10-01 10:48:41 +00:00
|
|
|
- 9115:9115
|
|
|
|
image: prom/blackbox-exporter
|
|
|
|
networks:
|
|
|
|
- back-tier
|
|
|
|
|
|
|
|
speedtest:
|
|
|
|
tty: true
|
|
|
|
stdin_open: true
|
|
|
|
expose:
|
|
|
|
- 9696
|
|
|
|
ports:
|
|
|
|
- 9696:9696
|
|
|
|
image: stefanwalther/speedtest-exporter
|
2017-02-21 12:39:50 +00:00
|
|
|
networks:
|
|
|
|
- back-tier
|