Prometheus monitoring docker Service

Steps:

sudo docker run \
    --restart=always \
  --volume=/:/rootfs:ro \
  --volume=/var/run:/var/run:ro \
  --volume=/sys:/sys:ro \
  --volume=/var/lib/docker/:/var/lib/docker:ro \
  --volume=/dev/disk/:/dev/disk:ro \
  --publish=8080:8080 \
  --detach=true \
  --name=cadvisor \
  google/cadvisor:v0.33.0

echo '
global:
  scrape_interval: 15s
  scrape_timeout: 10s
  evaluation_interval: 15s
alerting:
  alertmanagers:
  - static_configs:
    - targets: []
    scheme: http
    timeout: 10s
scrape_configs:
- job_name: prometheus
  scrape_interval: 15s
  scrape_timeout: 10s
  metrics_path: /metrics
  scheme: http
  static_configs:
  - targets: [localhost:9090,tx.20has.win:8080]
#    - localhost:9090
#    - tx.20has.win:8080
'>/data/docker/prometheus/prometheus.yml

docker run -d \
--name prometheus \
--restart=always \
-p9090:9090 \
-v /data/docker/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml \
-v /prometheus \
prom/prometheus

docker run -d --restart=always --name=grafana -p 3000:3000 grafana/grafana

Summary:
Recommended template template number one garafan relatively easy to monitor container: 3125
Architecture: cadvisor collection container information ----> prometheus (cadvisor support plug-ins as collecting end) ---> grafana a diagram showing
prometheus is not real-time monitoring program the default is to show data every 15s.

Display of results as follows:
Prometheus monitoring docker Service

Guess you like

Origin blog.51cto.com/20has/2475402