Last active
November 7, 2019 01:00
-
-
Save briandconnelly/99442e882b5092e55435fa3b7dd8a1c7 to your computer and use it in GitHub Desktop.
Periodic Speedtest with Telegraf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run a speedtest every 60 minutes using Speedtest CLI - https://www.speedtest.net/apps/cli | |
# WARNING! You may want to change the interval if your ISP enforces data usage limits. | |
[[inputs.exec]] | |
interval = "60m" | |
timeout = "1m" | |
commands = ["/speedtest -f json"] | |
name_override = "speedtest" | |
data_format = "json" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment