InfluxDB Community Templates: Quickly collect & analyze time series data from a range of sources: Kubernetes, MySQL, Postgres, AWS, Nginx, Jenkins, and more.
First of all, thanks for these excellent templates.
I've applied two small fixes in this PR.
The first one is removing the unnecessary -u Mbps option in the command. As per the docs, this option is only applicable for the human-readable output.
The second one is a fix in the download and upload conversion. The output bandwidth for both download and upload is returned in bytes from the Speedtest cli. In order to have it in megabit per second, which matches the suffix Mb/s used in the template, we need to divide it by 125000 instead of 100000.
First of all, thanks for these excellent templates.
I've applied two small fixes in this PR.
The first one is removing the unnecessary
-u Mbps
option in the command. As per the docs, this option is only applicable for thehuman-readable
output.The second one is a fix in the download and upload conversion. The output bandwidth for both download and upload is returned in bytes from the Speedtest cli. In order to have it in megabit per second, which matches the suffix
Mb/s
used in the template, we need to divide it by125000
instead of100000
.