Newer
Older
Import / projects / Gameloft / bne_lib / tools / MonitorReports / disconnects.pg
@John John on 29 Dec 2020 676 bytes bulk import from macbookpro checkouts
#!/usr/bin/gnuplot
reset
set terminal png size 2000,1280

set xdata time
set timefmt "%Y-%m-%dT%H:%M:%S"
set format x "%d/%m/%Y %H"
set xlabel "time"

set ylabel "total actives"
# set yrange [0:31]
set autoscale y

set title "Disconnection over time"
set key reverse Left outside
set grid


set datafile separator ","

set style data linespoints

plot "disconnects-sorted.csv" \
   using 1:2  title "ASA win", \
"" using 1:3  title "ASA ios", \
"" using 1:4  title "ASA and", \
"" using 1:5  title "APA win", \
"" using 1:6  title "APA ios", \
"" using 1:7  title "APA and", \
"" using 1:8  title "CHN win", \
"" using 1:9  title "CHN ios", \
"" using 1:10 title "CHN and"
#