commit 9ea6797e212faeeab77daf4a0957e93295f1e6f0
parent dd3836fca060a82872ad7ed79f49b2195a9b9fa7
Author: sin <sin@2f30.org>
Date:   Tue, 23 Feb 2016 16:07:25 +0000
Correct xlabel in sbm-rt-plot
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sbm-rt-plot b/sbm-rt-plot
@@ -15,12 +15,12 @@ cat << 'EOF'
 set multiplot layout 1, 2
 set autoscale
 set grid
-set xlabel "time"
+set xlabel "time / s"
 set ylabel "Mbps"
 datafile=system("echo $DATAFILE")
 plot datafile using ($1/1000/1000) with lines title "RX Mbps", \
      datafile using ($2/1000/1000) with lines title "TX Mbps"
-set xlabel "time"
+set xlabel "time / s"
 set ylabel "pps"
 plot datafile using ($3) with lines title "RX pps", \
      datafile using ($4) with lines title "TX pps"