blob: e3655b96bf2a00be48189c3ea09c1f890300a8f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
set title "processor data"
set timefmt "%Y-%m-%dT%H:%M:%SZ";
set xdata time;
set ytics nomirror;
set ylabel "number of telemetry objects within 3h";
set y2tics;
set y2label "number of player/match objects within 3h";
set autoscale;
set datafile separator ", ";
set terminal png noenhanced;
set key autotitle columnhead;
set output outputfile;
plot inputfile using "date":"players_sum" with lines axes x1y2, \
inputfile using "date":"matches_sum" with lines axes x1y2, \
inputfile using "date":"telemetries_sum" with lines axes x1y1;
|