Join our Discord Server
Docker Desktop

Lab 4: Configuring Prometheus with Docker Desktop

Estimated reading: 3 minutes 39 views

Prometheus is an open-source systems monitoring and alerting toolkit. Prometheus collects metrics from monitored targets by scraping metrics from HTTP endpoints on these targets. Docker instance can be configured as Prometheus target. Different targets to scrape are defined in the Prometheus configuration file. Targets may be statically configured via the static_configs parameter in the configuration fle or dynamically discovered using one of the supported service-discovery mechanisms (Consul, DNS, Etcd, etc.). Prometheus collects metrics from monitored targets by scraping metrics from HTTP endpoints on these targets. Since Prometheus also exposes data in the same manner about itself, it can also scrape and monitor its own health.

Docker metrics for Prometheus

Docker exposes Prometheus-compatible metrics on port 9323. This support is only available as an experimental feature.

  1. For Docker Desktop for Mac, click on Docker icon in the status menu

  2. Select Preferences…, Daemon, Advanced tab

  3. Update daemon settings:

{
  "metrics-addr" : "0.0.0.0:9323",
  "experimental" : true
}
  1. Click on Apply & Restart to restart the daemon

image

  1. Show the complete list of metrics using curl http://localhost:9323/metrics

  2. Show the list of engine metrics using curl http://localhost:9323/metrics | grep engine

Start Prometheus

In this section, we’ll start Prometheus and use it to scrape it’s own health.

  1. Create a new directory prometheus and change to that directory

  2. Create a text file prometheus.yml and use the following content:

# A scrape configuration scraping a Node Exporter and the Prometheus server
# itself.
scrape_configs:
  # Scrape Prometheus itself every 5 seconds.
  - job_name: 'prometheus'
    scrape_interval: 5s
    static_configs:
      - targets: ['localhost:9090']

This configuration file scrapes data from the Prometheus container which will be started subsequently on port 9090.

  1. Start a single-replica Prometheus service:
docker service create \
  --replicas 1 \
  --name metrics \
  --mount type=bind,source=`pwd`/prometheus.yml,destination=/etc/prometheus/prometheus.yml \
  --publish 9090:9090/tcp \
  prom/prometheus

This will start the Prometheus container on port 9090.

  1. Prometheus dashboard is at http://localhost:9090. Check the list of enabled targets at http://localhost:9090/targets (also accessible from Status → Targets menu).

image

It shows that the Prometheus endpoint is available for scraping.

  1. Click on Graph and click on -insert metric at cursor- to see the list of metrics available:

image

These are all the metrics published by the Prometheus endpoint.

  1. Choose http_request_total metrics, click on Execute

image

  1. Switch from Console to Graph

image

  1. Change the duration from 1h to 5m

image

  1. Click on Add Graph, select a different metric, say http_requests_duration_microseconds, and click on Execute

image

  1. Switch from Console to Graph and change the duration from 1h to 5m

image

Share this Doc

Lab 4: Configuring Prometheus with Docker Desktop

Or copy link

CONTENTS
Join our Discord Server