Hi all,
I’m trying to use the 13665 dashboard ( Speedtest-Exporter Dashboard | Grafana Labs )
During import seems it searches for DS_PROMETHEUS data source
My only data source is prometheus
In the dashboard there are no data and 2 error signals on instance and job
What can I do?
TL;DR
The speedtest-exporter is installed as docker container using
services:
speedtest-exporter:
image: miguelndecarvalho/speedtest-exporter
container_name: speedtest-exporter
# environment:
# - SPEEDTEST_PORT=<speedtest-port> #optional
# - SPEEDTEST_SERVER=<server-id> #optional
ports:
- 9798:9798
restart: unless-stopped
and it replies to the 9798 port
The Prometheus jobs are
# Speedtest metrics
- job_name: 'speedtest'
metrics_path: /metrics
scrape_interval: 30m # Avoid excessive bandwidth usage
scrape_timeout: 90s # Speedtests can take time
static_configs:
- targets: ['localhost:9798']
and it seems to work






