summaryrefslogtreecommitdiff
path: root/connection_end_over_time.plt
diff options
context:
space:
mode:
Diffstat (limited to 'connection_end_over_time.plt')
-rw-r--r--connection_end_over_time.plt14
1 files changed, 14 insertions, 0 deletions
diff --git a/connection_end_over_time.plt b/connection_end_over_time.plt
new file mode 100644
index 0000000..1620572
--- /dev/null
+++ b/connection_end_over_time.plt
@@ -0,0 +1,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;