This article will serve as the how-to guide for installing and running the Wyebot exporter which is an easy way to get started with API integration.
The Wyebot exporter is a self-hosted service that connects to the DEX sensor dashboard and hosts an HTTP page with metrics in a Prometheus compatible format. Many tools can directly ingest this format including Splunk, Datadog, and Victoria Metrics.
The instructions will walk you through running the exporter with Docker CLI but other container hosts like Podman or Rancher run it as well.
In order to make use of the Wyebot Prometheus Exporter, you will need to have access to a server (or servers) with the following software installed and running. There are many resources online with guides to install the following. We will link to official documentation.

CLOUD_NAME variable with your Wyebot dashboard URL prefix. To find this, log into your Wyebot sensors dashboard and note the text after https:// and before .wyebot.com. For example with https://wip2.wyebot.com/index.html, the CLOUD_NAME would be wip2.API_KEY variable with the API key you copied in the previous section.The container is configured to listen on port 8014. If both containers are on the same machine, you may not need to forward it.
Docker run example:
docker run -d \
--name wyebot-exporter \
-p 8014:8014 \
-e CLOUD_NAME="cloud" \
-e API_KEY="your-api-key" \
wyebotexporter/prometheus:latest
Docker compose example:
services:
wyebot-exporter:
image: wyebotexporter/prometheus:latest
container_name: wyebot-exporter
restart: unless-stopped
ports:
- "8014:8014" # Useful for testing
environment:
- CLOUD_NAME=cloud
- API_KEY=your-api-key
The recommended scrape inverval is 5 minutes since that is the frequency of data updates from the dashboard.
prometheus.yml configuration file to add a new job with a scrape_interval set to 5m.Example prometheus.yml config assuming both containers are on the same machine:
scrape_configs:
- job_name: 'wyebot'
scrape_interval: 5m
scrape_timeout: 5m
static_configs:
- targets: ['wyebot-exporter:8014'] # Change the IP/port as needed
http://[IP of your exporter]:8014. Once the page loads, you should see a bunch of text, similar to below:The webpage may take a while to load, since it does all the API calls at the time the webpage is accessed. Please be patient and do not refresh while it is loading.

