Merge pull request #8 from philicious/master

Refactored deprecated services
This commit is contained in:
Brian Christner 2016-07-14 08:29:35 +02:00 committed by GitHub
commit fe78582338
3 changed files with 46 additions and 66 deletions

2
config.monitoring Normal file
View File

@ -0,0 +1,2 @@
GF_SECURITY_ADMIN_PASSWORD=foobar
GF_USERS_ALLOW_SIGN_UP=false

View File

@ -1,65 +1,44 @@
prometheus:
image: "vegasbrianc/prom"
ports:
- "9090:9090"
links:
- "exporter:export"
- "cadvisor:cadvisor"
labels:
- "name=prometheus"
- "description=Core of Promethues"
- "version=0.16.1"
version: '2'
exporter:
image: "prom/container-exporter"
volumes:
- /sys/fs/cgroup:/cgroup
- /var/run/docker.sock:/var/run/docker.sock
ports:
- "9104:9104"
expose:
- "9104"
labels:
- "name=exporter"
- "description=Exports prom data"
- "version=latest"
volumes:
prometheus_data: {}
grafana_data: {}
sqlite3:
image: "prom/promdash"
command:
- "./bin/rake db:migrate"
volumes:
- "/tmp/prom:/tmp/prom"
environment:
- "DATABASE_URL=sqlite3:/tmp/prom/file.sqlite3"
promdash:
image: "prom/promdash"
ports:
- "3000:3000"
expose:
- "3000"
volumes:
- /tmp/prom:/tmp/prom
environment:
- "DATABASE_URL=sqlite3:/tmp/prom/file.sqlite3"
labels:
- "name=prom dashboard"
- "description=Dashboards for metrics"
- "version=latest"
cadvisor:
image: "google/cadvisor"
volumes:
- "/:/rootfs:ro"
- "/var/run:/var/run:rw"
- "/sys:/sys:ro"
- "/var/lib/docker/:/var/lib/docker:ro"
ports:
- "8080:8080"
expose:
- "8080"
labels:
- "name=cAdvisor"
- "description=Google Container Advisor collects metrics from host and containers"
- "version=latest"
services:
prometheus:
image: prom/prometheus
volumes:
- ./prometheus/prometheus.yml:/etc/prometheus/prometheus.yml
- prometheus_data:/prometheus
command:
- '-config.file=/etc/prometheus/prometheus.yml'
- '-storage.local.path=/prometheus'
expose:
- 9090
links:
- cadvisor:cadvisor
depends_on:
- cadvisor
node-exporter:
image: prom/node-exporter
expose:
- 9100
cadvisor:
image: google/cadvisor
volumes:
- /:/rootfs:ro
- /var/run:/var/run:rw
- /sys:/sys:ro
- /var/lib/docker/:/var/lib/docker:ro
expose:
- 8080
grafana:
image: grafana/grafana
depends_on:
- prometheus
ports:
- 3000:3000
volumes:
- grafana_data:/var/lib/grafana
env_file:
- config.monitoring

View File

@ -7,7 +7,7 @@ global:
# Attach these labels to any time series or alerts when communicating with
# external systems (federation, remote storage, Alertmanager).
external_labels:
monitor: 'codelab-monitor'
monitor: 'my-project'
# Load and evaluate rules in this file every 'evaluation_interval' seconds.
rule_files:
@ -15,7 +15,6 @@ rule_files:
# - "second.rules"
# A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
scrape_configs:
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
- job_name: 'prometheus'
@ -28,4 +27,4 @@ scrape_configs:
# scheme defaults to 'http'.
target_groups:
- targets: ['localhost:9090','cadvisor:8080']
- targets: ['localhost:9090','cadvisor:8080','node-exporter:9100']