speedtest.gplot 548 B

1234567891011121314151617181920212223
  1. ############################
  2. # Display speedtest results
  3. set terminal png transparent size <SIZE> crop
  4. set output '<OUT>.png'
  5. set xdata time
  6. set timefmt "%Y-%m-%d_%H:%M:%S"
  7. set xlabel " "
  8. set title '<L1>'
  9. set ylabel "Mbit/s"
  10. set y2label "Mbit/s"
  11. set y3label "ms"
  12. #DbLog speedtest:download::
  13. #DbLog speedtest:upload::
  14. #DbLog speedtest:ping::
  15. plot
  16. using 1:2 ls l0 axes x1y2 title 'download (Mbit/s)' with lines,
  17. using 1:2 ls l1 axes x1y1 title 'upload (Mbit/s)' with lines,
  18. using 1:2 ls l2 axes x1y3 title 'ping (ms)' with lines,