From c3611f7f64f274d6764e7f13283f236d4ca69ecc Mon Sep 17 00:00:00 2001 From: schneefux Date: Sun, 18 Jun 2017 14:27:05 +0200 Subject: add db stats --- objects_over_time.plt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 objects_over_time.plt (limited to 'objects_over_time.plt') diff --git a/objects_over_time.plt b/objects_over_time.plt new file mode 100644 index 0000000..0e7b893 --- /dev/null +++ b/objects_over_time.plt @@ -0,0 +1,14 @@ +set title "processor data" +set timefmt "%Y-%m-%dT%H:%M:%SZ"; +set xdata time; +set ylabel "number of objects within 3h"; +set autoscale y; + +set datafile separator ", "; + +set terminal png noenhanced; +set key autotitle columnhead; +set output outputfile; +plot inputfile using "date":"players_count" with lines, \ + inputfile using "date":"matches_count" with lines, \ + inputfile using "date":"telemetries_count" with lines; -- cgit v1.3.1