From a9ea07699e4f8c7b65d9ccb84d1ccc993f9e3cad Mon Sep 17 00:00:00 2001 From: Steph Enders Date: Sat, 11 Nov 2023 22:55:28 -0500 Subject: Initial commit of simple functional speedtest log This series of scripts simply calls speedtest-cli python module to basically log its data to a tsv file (expected log.tsv) This will basically allow then ./plot.sh to plot the file datapoints The idea is to set this up as a cron and then you can plot the data over time --- README | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 README (limited to 'README') diff --git a/README b/README new file mode 100644 index 0000000..9e90f50 --- /dev/null +++ b/README @@ -0,0 +1,19 @@ +# speedtest logger + +This is basically just speedtest-cli --csv running indefinetly + +## CSV layout + +The current CSV headers are: + +Server ID,Sponsor,Server Name,Timestamp,Distance,Ping,Download,Upload,Share,IP Address + +To get just the download speeds in Mbps you can do: + +tail -n +2 log.txt | cut -f7 | numfmt --to-unit=M + +and similarly with -f8 for upload speeds + +## Ploting + +I've added a gnuplot script to generate these as a plot straight from the raw log file \ No newline at end of file -- cgit v1.2.3-54-g00ecf