I have a handy script that runs ab and generates a chart later. However, there is a problem, it shows me every point (which is good), however I would also like to see the middle "line" between them. I will show more in the picture.
So, is there a way to add a median / middle ranger on top?
Script
#!/usr/local/bin/gnuplot set terminal jpeg size 1280,720 set size 1, 1 set output OUTPUT set title OUTPUT set key left top set grid y set xdata time set timefmt "%s" set format x "%S" set xlabel 'seconds' set ylabel "response time (ms)" set datafile separator '\t' plot INPUT every ::2 using 2:5 title 'response time' with points exit
Ouptut

Exit (what I would like)

source share