Getting Started¶
This section shows the quickest way to run the exporter.
Requirements¶
- Docker
- Meraki Dashboard API access and key
Setup¶
- Copy
.env.example
to.env
and setMERAKI_API_KEY
. - Start the container with
docker compose up -d
. You can review the docker-compose.yml for optional settings.
Alternatively, run directly with Docker:
docker run -d \
-e MERAKI_EXPORTER_MERAKI__API_KEY=your_api_key_here \
-p 9099:9099 \
ghcr.io/rknightion/meraki-dashboard-exporter:latest
Verify¶
- Visit
http://localhost:9099/metrics
to see metrics. curl http://localhost:9099/health
should return{"status": "healthy"}
.
Next read the Configuration guide for all settings and the Metrics Reference for available metrics.