== This Project was moved to Codeberg ==
GitHub is a proprietary, trade-secret system that is not Free and Open Souce Software (FOSS). We urge you to read about the Give up GitHub campaign from the Software Freedom Conservancy to understand some of the reasons why GitHub is not a good place to host FOSS projects.
Any use of this project's code by GitHub Copilot, past or present, is done without our permission. We do not consent to GitHub's use of this project's code in Copilot.
This script was written to provide network speedtest results to a MQTT sensor in the HomeAssistant home automation platform. As expected the python speedtest-cli is resource intensive which makes the idea of running it on a system other than your main HomeAssistant a good idea. Not to mention if you are running HomeAssistant on a RaspberryPi you may be constrained by the Pi's network adapter.
- You will need the ability to execute this script.
- You will need a MQTT sever that you can publish to.
- if you want to use Splunk to log this script, jump to You can Splunk it if you want to...
- Install the app by cloning this repo
git clone https://github.com/thejeffreystone/speedtest_to_mqtt
- Install the required python libraries:
pip install -r requirements.txt
- Edit the env-sample and saved as .env
This script is meant to run with something like supervisord, and has a default interval of 3600 seconds (1 hour). If you want to have this script to run speedtests continiously set the interval greater than zero. If interval is set to 0 the script will exit after running once.
If you want to have cron or some other system mange the script execution then simply set the interval to 0 in the .env
My use case for this was to update HomeAssistant sensors via MQTT. However, you can use this script to simply publish speedtests to your MQTT.
- This script publishes speedtests to topic
hosue/speedtest/<test>
where test is eitherdownload
orupload
. - This script utilizes the python
speedtest-cli
library and may not be accurate. - This script is built to run continiously and will pause for the interval set in the
.env
file, but can be ran using cron or another system. In that case setinterval=0
in the .env file. - The script has an app_mode set in the .env file. When app_mode is set to
debug
the script will output status messages to stdout. If you would like to supress these, change app_mode to somethign other thandebug
. Default app_mode isprod
. - Log the script's results to Splunk using Splunk's HTTP Event Collector
I added the ability to log to Splunk's HTTP Event Collector if you are like me and like to Splunk everything. The script leverages George Starcher's Python Class.
If you want to use the Splunk component you will need to install George Starcher's Python Class
pip install git+git://github.com/georgestarcher/Splunk-Class-httpevent.git
The update your .env to include the details of your Splunk server:
# Splunk Server:
splunk_server=192.168.1.20
# Splunk HEC Port - Default is 8088:
splunk_hec_port=8088
# Splunk Hec SSL:
splunk_hec_ssl=False
# Splunk HEC Token:
splunk_hec_key=
# Splunk index:
splunk_index=main
# Splunk sourcetype:
splunk_sourcetype=speedtest
# Splunk Source:
splunk_source=speedtest_script
# Splunk host:
splunk_host=jarvis
If you don't set a token, the script will ignore the Splunk portion.
If you are new to Splunk or the Splunk's HTTP Event Collector you can find more information at Use Splunk's HTTP Event Collector
This script was written and tested using python 3.7.2