blob: 162057296628246e35029914de1b5384408dbbcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
set title "API /matches response times"
set timefmt "%Y-%m-%dT%H:%M:%SZ";
set xdata time;
set ylabel "response time in ms";
set yrange [ 60:1000 ];
set datafile separator ", ";
set terminal png noenhanced;
set key autotitle columnhead;
set output outputfile;
plot inputfile using "date":"connection_end_min" with lines, \
inputfile using "date":"connection_end_mean" with lines, \
inputfile using "date":"connection_end_max" with lines;
|