blob: 28ac9830961e2a6d8f268b9f1054463163766fb9 (
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 autoscale y;
set y2tics;
set y2label "number of player/match objects within 3h";
set autoscale y2;
set datafile separator ", ";
set terminal png noenhanced;
set key autotitle columnhead;
set output outputfile;
plot inputfile using "date":"players_count" with lines axes x1y2, \
inputfile using "date":"matches_count" with lines axes x1y2, \
inputfile using "date":"telemetries_count" with lines axes x1y1;
|