chore(flow): added flow to project
This commit is contained in:
parent
8ffc5745db
commit
5bfde40628
77
templates/prometheus/0/docker-compose.yml
Normal file
77
templates/prometheus/0/docker-compose.yml
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
version: '2'
|
||||||
|
|
||||||
|
services:
|
||||||
|
cadvisor:
|
||||||
|
labels:
|
||||||
|
io.rancher.scheduler.global: 'true'
|
||||||
|
tty: true
|
||||||
|
image: google/cadvisor:latest
|
||||||
|
stdin_open: true
|
||||||
|
volumes:
|
||||||
|
- "/:/rootfs:ro"
|
||||||
|
- "/var/run:/var/run:rw"
|
||||||
|
- "/sys:/sys:ro"
|
||||||
|
- "/var/lib/docker/:/var/lib/docker:ro"
|
||||||
|
|
||||||
|
node-exporter:
|
||||||
|
labels:
|
||||||
|
io.rancher.scheduler.global: 'true'
|
||||||
|
tty: true
|
||||||
|
image: prom/node-exporter:latest
|
||||||
|
stdin_open: true
|
||||||
|
|
||||||
|
prom-conf:
|
||||||
|
tty: true
|
||||||
|
image: infinityworks/prom-conf:20
|
||||||
|
volumes:
|
||||||
|
- /etc/prom-conf/
|
||||||
|
net: none
|
||||||
|
|
||||||
|
prometheus:
|
||||||
|
tty: true
|
||||||
|
image: prom/prometheus:v2.1.0
|
||||||
|
command: --config.file=/etc/prom-conf/prometheus.yml --storage.tsdb.path=/prometheus --web.console.libraries=/etc/prometheus/console_libraries --web.console.templates=/etc/prometheus/consoles
|
||||||
|
ports:
|
||||||
|
- 9090
|
||||||
|
labels:
|
||||||
|
io.rancher.sidekicks: prom-conf
|
||||||
|
volumes_from:
|
||||||
|
- prom-conf
|
||||||
|
volumes:
|
||||||
|
- prometheus-data:/prometheus
|
||||||
|
volume_driver: ${VOLUME_DRIVER}
|
||||||
|
links:
|
||||||
|
- cadvisor:cadvisor
|
||||||
|
- node-exporter:node-exporter
|
||||||
|
- prometheus-rancher-exporter:prometheus-rancher-exporter
|
||||||
|
extra_hosts:
|
||||||
|
- "rancher-server:${RANCHER_SERVER}"
|
||||||
|
|
||||||
|
graf-db:
|
||||||
|
tty: true
|
||||||
|
image: infinityworks/graf-db:11
|
||||||
|
command: cat
|
||||||
|
volumes:
|
||||||
|
- grafana-data:/var/lib/grafana/
|
||||||
|
volume_driver: ${VOLUME_DRIVER}
|
||||||
|
net: none
|
||||||
|
|
||||||
|
grafana:
|
||||||
|
tty: true
|
||||||
|
image: grafana/grafana:5.0.0
|
||||||
|
ports:
|
||||||
|
- 3000
|
||||||
|
labels:
|
||||||
|
io.rancher.sidekicks: graf-db
|
||||||
|
volumes_from:
|
||||||
|
- graf-db
|
||||||
|
links:
|
||||||
|
- prometheus:prometheus
|
||||||
|
- prometheus-rancher-exporter:prometheus-rancher-exporter
|
||||||
|
|
||||||
|
prometheus-rancher-exporter:
|
||||||
|
tty: true
|
||||||
|
labels:
|
||||||
|
io.rancher.container.create_agent: true
|
||||||
|
io.rancher.container.agent.role: environment
|
||||||
|
image: infinityworks/prometheus-rancher-exporter:v0.22.52
|
Loading…
Reference in New Issue
Block a user