bonovoxly / coinmarketcap-exporter

coinmarketcap.com Prometheus Exporter
MIT License
105 stars 48 forks source link

coinmarketcap-exporter

A prometheus exporter for https://coinmarketcap.com/. Provides Prometheus metrics from the API endpoint of Coinmarketcap, such as US price, Bitcoin price, trading volume, etc. Blog post found here.

When running this exporter with both Prometheus and Grafana, you can create dashboards like:

coinmarketcap-single-dashboard

Developing

docker build -t coinmarketcap-exporter:latest .
docker run --rm -p 127.0.0.1:9101:9101 coinmarketcap-exporter:latest
docker run --rm -it --entrypoint=/bin/sh -p 127.0.0.1:9101:9101 -v ${PWD}:/opt/coinmarketcap-exporter coinmarketcap-exporter:latest
python coinmarketcap.py

Testing the Prometheus Grafana Stack

docker-compose up

Thanks and Links