speedtest-to-influxdb2/README.md

39 lines
1.4 KiB
Markdown
Raw Normal View History

2019-11-02 00:28:49 +00:00
# Speedtest to InfluxDB
2019-11-02 00:09:20 +00:00
2019-11-02 00:28:49 +00:00
This is a small Python script that will continuously run the Speedtest CLI application by Ookla, reformat the data output and forward it on to an InfluxDB database.
2019-11-02 00:09:20 +00:00
You may want to do this so that you can track your internet connections consistency over time. Using Grafana you can view and explore this data easily.
![Grafana Dashboard](https://i.imgur.com/8cUdMy7.png)
## Using the script
2019-11-02 00:28:49 +00:00
Adjust the InfluxDB connection settings at the top of `main.py` to fit your setup and then run with one of the options listed below.
2019-11-02 00:09:20 +00:00
2019-11-02 00:28:49 +00:00
Be aware that this script will automatically accept the license and GDPR statement so that it can run non-interactively. Make sure you agree with them before running.
### 1. No Container
1. [Install the Speedtest CLI application by Ookla.](https://www.speedtest.net/apps/cli)
2019-11-02 00:09:20 +00:00
2020-01-09 15:08:10 +00:00
NOTE: The `speedtest-cli` package in distro repositories is an unofficial client. It will need to be uninstalled before installing the Ookla Speedtest CLI application with the directions on their website.
2019-11-02 00:09:20 +00:00
2. Install the InfluxDB client for library from Python.
`pip install influxdb`
3. Run the script.
`python3 ./main.py`
2019-11-02 00:28:49 +00:00
### 2. Run with Docker or Podman
2019-11-02 00:09:20 +00:00
1. Build the container.
`docker build -t aidengilmartin/speedtest-influx ./`
2. Run the container.
`docker run -d --name speedtest-influx aidengilmartin/speedtest-influx`