diff --git a/fhem/www/gplot/speedtest.gplot b/fhem/www/gplot/speedtest.gplot new file mode 100644 index 000000000..eb2672312 --- /dev/null +++ b/fhem/www/gplot/speedtest.gplot @@ -0,0 +1,22 @@ +############################ +# Display speedtest results + +set terminal png transparent size crop +set output '.png' +set xdata time +set timefmt "%Y-%m-%d_%H:%M:%S" +set xlabel " " +set title '' + +set ylabel "Mbit/s" +set y2label "Mbit/s" +set y3label "ms" + +#DbLog speedtest:download:: +#DbLog speedtest:upload:: +#DbLog speedtest:ping:: + +plot + using 1:2 ls l0 axes x1y2 title 'download (Mbit/s)' with lines, + using 1:2 ls l1 axes x1y1 title 'upload (Mbit/s)' with lines, + using 1:2 ls l2 axes x1y3 title 'ping (ms)' with lines,