2016-09-12 08:13:46 +01:00
2016-09-08 09:40:50 +01:00
2016-09-12 08:13:46 +01:00

Prometheus Docker Hub Exporter

Exposes metrics of container pulls and stars from the Docker Hub API, to a Prometheus compatible endpoint.

Configuration

The image is setup to take two parameters from environment variables: BIND_PORT The port you wish to run the container on, defaults to 9170 IMAGES The images you wish to monitor, expected in the format "user/image1, user/image2". Can be across different dockerhub users.

Install and deploy

Run manually from Docker Hub:

docker run -d --restart=always -p 9170:9170 -e IMAGES="infinityworks/ranch-eye, infinityworks/prom-conf" infinityworks/docker-hub-exporter

Build a docker image:

docker build -t <image-name> .
docker run -d --restart=always -p 9170:9170 -e IMAGES="infinityworks/ranch-eye, infinityworks/prom-conf" <image-name>

Docker compose

docker-hub-exporter:
    tty: true
    stdin_open: true
    expose:
      - 9170:9170
    image: infinityworks/docker-hub-exporter

Metrics

Metrics will be made available on port 9170 by default

# HELP docker_hub_pulls_total counter of docker_pulls from the public API
# TYPE docker_hub_pulls_total counter
docker_hub_pulls_total{image="prometheus",user="prom"} 5476894.0
docker_hub_pulls_total{image="node-exporter",user="prom"} 10103713.0
# HELP docker_hub_stars gauge of docker_stars from the public API
# TYPE docker_hub_stars gauge
docker_hub_stars{image="prometheus",user="prom"} 136.0
docker_hub_stars{image="node-exporter",user="prom"} 16.0

Metadata

S
Description
No description provided
Readme MIT
53 KiB
Languages
Go 93.9%
Dockerfile 6.1%