You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
272 B
9 lines
272 B
set datafile separator ','
|
|
set xdata time
|
|
set timefmt "%s" # timestamp
|
|
set format x "%H:%M:%S"
|
|
set xlabel "Time";
|
|
set ylabel "Latency (ms)";
|
|
set terminal png size 1280,1024
|
|
set output 'response-time.png'
|
|
plot 'response-time.csv' using ($1/1000):15 with points pt 1 ps 0.5
|
|
|