From 8ea3bf034231c4b077223b2a0386b2d52cfb38e3 Mon Sep 17 00:00:00 2001 From: Stephen Smoogen Date: Fri, 6 May 2016 19:32:06 +0000 Subject: [PATCH] and update the getfedora so it breaks out certain tracks --- .../files/getfedora-data.awk | 146 +++++++++++----- .../web-data-analysis/files/getfedora-data.gp | 158 ++++++++++++++---- 2 files changed, 233 insertions(+), 71 deletions(-) diff --git a/roles/web-data-analysis/files/getfedora-data.awk b/roles/web-data-analysis/files/getfedora-data.awk index 7d3aa12f9e..881f554c17 100644 --- a/roles/web-data-analysis/files/getfedora-data.awk +++ b/roles/web-data-analysis/files/getfedora-data.awk @@ -2,14 +2,16 @@ BEGIN{ olddate="1970-01-01" - dt = 0; + total = 0; #edition atomic=0; cloud=0; server=0; workstation=0; + edit=0; unk_edt=0; # release + f20=0; f21=0; f22=0; f23=0; @@ -29,9 +31,28 @@ BEGIN{ ppc_he=0; s390x=0; unk_arc=0; + # spins + spin = 0; + xfce = 0; + soas = 0; + lxde = 0; + secu = 0; + robo = 0; + mate = 0; + scik = 0; + jamk = 0; + desi = 0; + elec = 0; + game = 0; + mini = 0; + cinn = 0; + kde = 0; # additional data netinstall=0; - print olddate ",dt,atomic,cloud,server,workstation,unk_edt,f21,f22,f23,f24,f25,f26,f27,f28,f29,unk_rel,arm_32,arm_64,ppc_le,ppc_he,s390x,x86_32,x86_64,unk_arc,netinstall" + netserv=0; + network=0; + netclod=0; + print olddate ",total,editions,atomic,cloud,server,workstation,unk_edt,f20,f21,f22,f23,f24,f25,f26,f27,f28,f29,unk_rel,arm_32,arm_64,ppc_le,ppc_he,s390x,x86_32,x86_64,unk_arc,netinstall,netserv,network,netclod,spin,Xfce,SoaS,LXDE,Security,Robotics,Mate,Scientific,Jam,Design,Electronics,Games,Minimal,Cinnamon,KDE" } { @@ -45,7 +66,8 @@ BEGIN{ else if (($3 ~/\.s390x\./) || ($3 ~/-s390x-/)){ s390x = s390x +1; } else { unk_arc = unk_arc +1 }; - if (($3 ~/-21\./) || ($3 ~/-21-/)) { f21 = f21 + 1 } + if (($3 ~/-20\./) || ($3 ~/-20-/)) { f20 = f20 + 1 } + else if (($3 ~/-21\./) || ($3 ~/-21-/)) { f21 = f21 + 1 } else if (($3 ~/-22\./) || ($3 ~/-22-/)) { f22 = f22 + 1 } else if (($3 ~/-23\./) || ($3 ~/-23-/)) { f23 = f23 + 1 } else if (($3 ~/-24\./) || ($3 ~/-24-/)) { f24 = f24 + 1 } @@ -56,51 +78,91 @@ BEGIN{ else if (($3 ~/-29\./) || ($3 ~/-29-/)) { f29 = f29 + 1 } else {unk_rel = unk_rel +1 } - if (($3 ~/Cloud-Atomic/) || ($3 ~/Cloud_Atomic/)) { atomic = atomic +1 ; dt = dt +1 } - else if (($3 ~/Cloud-Base/) || ($3 ~/Cloud_Base/)) { cloud = cloud +1 ; dt = dt +1 } - else if (($3 ~/Server-DVD/) || ($3 ~/Server_DVD/)) { server = server +1; dt = dt +1 } - else if (($3 ~/Server-netinst/) || ($3 ~/Server_netinst/)) { server = server +1; netinstall = netinstall +1 ; dt = dt +1 } - else if (($3 ~/Workstation-netinst/) || ($3 ~/Workstation_netinst/)) { workstation = workstation +1; netinstall = netinstall +1; dt = dt +1 } - else if (($3 ~/Live-Workstation/) || ($3 ~/Live_Workstation/)) { workstation = workstation +1; dt = dt +1 } - else { unk_edt = unk_edt + 1; dt = dt +1} - + if (($3 ~/Cloud-Atomic/) || ($3 ~/Cloud_Atomic/)) { atomic = atomic +1 ; edit = edit +1; total = total +1 } + else if (($3 ~/Cloud-Base/) || ($3 ~/Cloud_Base/)) { cloud = cloud +1 ; edit = edit +1; total = total +1 } + else if (($3 ~/Cloud-netinst/) || ($3 ~/Cloud_netinst/)) { cloud = cloud +1; netinstall = netinstall +1 ; netclod=netclod+1; edit = edit +1; total = total +1 } + else if (($3 ~/Server-DVD/) || ($3 ~/Server_DVD/)) { server = server +1; edit = edit +1;total = total +1 } + else if (($3 ~/Server-netinst/) || ($3 ~/Server_netinst/)) { server = server +1; netinstall = netinstall +1 ; netserv=netserv+1; edit = edit +1;total = total +1 } + else if (($3 ~/Workstation-netinst/) || ($3 ~/Workstation_netinst/)) { workstation = workstation +1; netinstall = netinstall +1; network=network+1; edit = edit +1;total = total +1 } + else if (($3 ~/Live-Workstation/) || ($3 ~/Live_Workstation/)) { workstation = workstation +1; edit = edit +1;total = total +1 } + else if (($3 ~/Desktop/) || ($3 ~/Desktop/)) { workstation = workstation +1; edit = edit +1;total = total +1 } + else if (($3 ~/Fedora-20-i386-DVD/) || ($3 ~/Fedora-20-ppc64-DVD/) || ($3 ~/Fedora-20-x86_64-DVD/) || ($3 ~/Fedora-i386-20/) || ($3 ~/Fedora-x86_64-20/)) { server = server +1; edit = edit +1;total = total +1 } + else if (($3 ~/Fedora-20-i386-netinst.iso/) || ($3 ~/Fedora-20-ppc64-netinst.iso/) || ($3 ~/Fedora-20-x86_64-netinst.iso/) ) { server = server +1; netinstall = netinstall + 1; netserv = netserv+1; edit = edit +1;total = total +1 } + else if ($3 ~/Xfce/) { spin = spin +1 ; xfce = xfce +1; total = total + 1} + else if ($3 ~/SoaS/) { spin = spin +1 ; soas = soas +1; total = total + 1} + else if ($3 ~/LXDE/) { spin = spin +1 ; lxde = lxde +1; total = total + 1} + else if ($3 ~/Security/) { spin = spin +1; secu = secu +1; total = total + 1} + else if ($3 ~/Robotics/) { spin = spin +1; robo = robo +1; total = total + 1} + else if (($3 ~/Mate/) || ($3 ~/MATE/)) { spin = spin +1; mate = mate +1; total = total + 1} + else if (($3 ~/Scientific_KDE/) || ($3 ~/Scientific-KDE/)) { spin = spin +1; scik = scik +1; total = total + 1} + else if (($3 ~/Jam_KDE/) || ($3 ~/Jam-KDE/)) { spin = spin +1; jamk = jamk +1; total = total + 1} + else if (($3 ~/Design_suite/) || ($3 ~/Design-suite/)) { spin = spin +1; desi = desi +1; total = total + 1} + else if (($3 ~/Electronic_Lab/) || ($3 ~/Electronic-Lab/)) { spin = spin +1; elec = elec +1; total = total + 1} + else if ($3 ~/Games/) { spin = spin +1; game = game +1; total = total + 1} + else if ($3 ~/Minimal/) { spin = spin +1; mini = mini +1; total = total + 1} + else if ($3 ~/Cinnamon/) { spin = spin +1; cinn = cinn +1; total = total + 1} + else if ($3 ~/KDE/) { spin = spin +1; kde = kde +1; total = total + 1} + else { unk_edt = unk_edt + 1; total = total +1} + + } else { - print olddate "," dt "," atomic "," cloud "," server "," workstation "," unk_edt "," f21 "," f22 "," f23 "," f24 "," f25 "," f26 "," f27 "," f28 "," f29 "," unk_rel "," arm_32 "," arm_64 "," ppc_le "," ppc_he "," s390x "," x86_32 "," x86_64 "," unk_arc "," netinstall + print olddate "," total "," edit "," atomic "," cloud "," server "," workstation "," unk_edt "," f20 "," f21 "," f22 "," f23 "," f24 "," "," f25 "," f26 "," f27 "," f28 "," f29 "," unk_rel "," arm_32 "," arm_64 "," ppc_le "," ppc_he "," s390x "," x86_32 "," x86_64 "," unk_arc "," netinstall "," netserv "," network "," netclod "," spin "," xfce "," soas "," lxde "," secu "," robo "," mate "," scik "," jamk "," desi "," elec "," game "," mini "," cinn "," kde olddate=$1 - dt = 0; - #edition - atomic=0; - cloud=0; - server=0; - workstation=0; - unk_edt=0; - # release - f21=0; - f22=0; - f23=0; - f24=0; - f25=0; - f26=0; - f27=0; - f28=0; - f29=0; - unk_rel=0; - # arch - arm_32=0; - arm_64=0; - x86_32=0; - x86_64=0; - ppc_le=0; - ppc_he=0; - s390x=0; - unk_arc=0; - # additional data - netinstall=0; + total = 0; + #edition + atomic=0; + cloud=0; + server=0; + workstation=0; + edit = 0; + unk_edt=0; + # release + f20=0; + f21=0; + f22=0; + f23=0; + f24=0; + f25=0; + f26=0; + f27=0; + f28=0; + f29=0; + unk_rel=0; + # arch + arm_32=0; + arm_64=0; + x86_32=0; + x86_64=0; + ppc_le=0; + ppc_he=0; + s390x=0; + unk_arc=0; + # spins + spin = 0; + xfce = 0; + soas = 0; + lxde = 0; + secu = 0; + robo = 0; + mate = 0; + scik = 0; + jamk = 0; + desi = 0; + elec = 0; + game = 0; + mini = 0; + cinn = 0; + kde = 0; + # additional data + netinstall=0; + netserv=0; + network=0; + netclod=0; } } END { - print olddate "," dt "," atomic "," cloud "," server "," workstation "," unk_edt "," f21 "," f22 "," f23 "," f24 "," f25 "," f26 "," f27 "," f28 "," f29 "," unk_rel "," arm_32 "," arm_64 "," ppc_le "," ppc_he "," s390x "," x86_32 "," x86_64 "," unk_arc "," netinstall + print olddate "," total "," edit "," atomic "," cloud "," server "," workstation "," unk_edt "," f20 "," f21 "," f22 "," f23 "," f24 "," unk_rel "," arm_32 "," arm_64 "," ppc_le "," ppc_he "," s390x "," x86_32 "," x86_64 "," unk_arc "," netinstall "," netserv "," network "," netclod "," spin "," xfce "," soas "," lxde "," secu "," robo "," mate "," scik "," jamk "," desi "," elec "," game "," mini "," cinn "," kde } diff --git a/roles/web-data-analysis/files/getfedora-data.gp b/roles/web-data-analysis/files/getfedora-data.gp index 008503e1d9..6bd8bea071 100644 --- a/roles/web-data-analysis/files/getfedora-data.gp +++ b/roles/web-data-analysis/files/getfedora-data.gp @@ -8,46 +8,146 @@ set term png size 1600,1200 ## set output "/var/www/html/csv-reports/images/getfedora-editions.png" -set title "Daily Editions Total" -plot ["2014-12-03":"2016-12-31"] \ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:2 title 'Total number' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:3 title 'Atomic' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:4 title 'Cloud' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:5 title 'Server' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:6 title 'Workstation' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:26 title 'Netinstall' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:7 title 'Unknown' with lines lw 4 +set title "Daily Editions Total Unique IPs" +plot ["2014-12-01":"2016-12-31"] \ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:2 title 'Total downloads' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:3 title 'Editions' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:4 title 'Atomic' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:5 title 'Cloud' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:6 title 'Server' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:7 title 'Workstation' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:8 title 'Unknown' with lines lw 4 unset output ## set output "/var/www/html/csv-reports/images/getfedora-versions.png" +set title "Daily Editions Total Unique IPs" +plot ["2014-12-01":"2016-12-31"] \ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:2 title 'Total downloads' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:3 title 'Editions' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($4+$5+$6+$7+$8) title 'Atomic' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($5+$6+$7+$8) title 'Cloud' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($6+$7+$8) title 'Server' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($7+$8) title 'Workstation' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($8) title 'Unknown' with filledcurves x1 +unset output + +## +set output "/var/www/html/csv-reports/images/getfedora-versions-filled.png" set title "Daily Version Totals" -plot ["2014-12-03":"2016-12-31"] \ +plot ["2014-12-01":"2016-12-31"] \ '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:2 title 'Total number' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:8 title 'Fedora-21' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:9 title 'Fedora-22' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:10 title 'Fedora-23' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:11 title 'Fedora-24' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:12 title 'Fedora-25' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:13 title 'Fedora-26' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:14 title 'Fedora-27' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:15 title 'Fedora-28' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:16 title 'Fedora-29' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:17 title 'Unknown' with lines lw 4 + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($9+$10+$11+$12+$13+$14) title 'Fedora-20' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($10+$11+$12+$13+$14) title 'Fedora-21' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($11+$12+$13+$14) title 'Fedora-22' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($12+$13+$14) title 'Fedora-23' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:(13+$14) title 'Fedora-24' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($14) title 'Unknown' with filledcurves x1 unset output ## set output "/var/www/html/csv-reports/images/getfedora-arch.png" set title "Daily Architectures Totals" -plot ["2014-12-03":"2016-12-31"] \ +plot ["2014-12-01":"2016-12-31"] \ '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:2 title 'Total number' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:18 title 'arm_32' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:19 title 'arm_64' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:20 title 'ppc_le' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:21 title 'ppc_he' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:22 title 's390x' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:23 title 'x86_32' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:24 title 'x86_64' with lines lw 4,\ - '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:25 title 'unknown' with lines lw 4 + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:15 title 'arm_32' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:16 title 'arm_64' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:17 title 'ppc_le' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:18 title 'ppc_he' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:19 title 's390x' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:20 title 'x86_32' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:21 title 'x86_64' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:22 title 'unknown' with lines lw 4 unset output +## +set output "/var/www/html/csv-reports/images/getfedora-arch-filled.png" +set title "Daily x86 Architectures Filled Totals" +plot ["2014-12-01":"2016-12-31"] \ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:2 title 'Total number' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($20+$21) title 'x86_32' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($21) title 'x86_64' with filledcurves x1 +unset output + +## +set output "/var/www/html/csv-reports/images/getfedora-arch-less-filled.png" +set title "Daily Other Architectures Totals" +plot ["2014-01-01":"2016-12-31"] \ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($15+$16+$17+$18+$19+$22) title 'arm_32' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($16+$17+$18+$19+$22) title 'arm_64' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($17+$18+$19+$22) title 'ppc_le' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($18+$19+$22) title 'ppc_he' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($19+$22) title 's390x' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($22) title 'unknown' with filledcurves x1 +unset output + +## +set output "/var/www/html/csv-reports/images/getfedora-netinstalls.png" +set title "Daily Netinstalls Total" +plot ["2014-01-01":"2016-12-31"] \ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:23 title 'Total Netinstalls' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:24 title 'Server' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:25 title 'Workstation' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:26 title 'Cloud' with lines lw 4 +unset output + +## +set output "/var/www/html/csv-reports/images/getfedora-netinstalls-filled.png" +set title "Daily Netinstalls Total" +plot ["2014-01-01":"2016-12-31"] \ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:23 title 'Total Netinstalls' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($24+$25+$26) title 'Server' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($25+$26) title 'Workstation' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($26) title 'Cloud' with filledcurves x1 +unset output + +## +set output "/var/www/html/csv-reports/images/getfedora-spins.png" +set title "Daily Desktop Spins Total" +plot ["2014-01-01":"2016-12-31"] \ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:27 title 'Total Spins' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:28 title 'XFCE' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:30 title 'LXDE' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:33 title 'Mate' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:40 title 'Cinnamon' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:41 title 'KDE' with lines lw 4, \ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:29 title 'SoaS' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:31 title 'Security' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:32 title 'Robotics' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:34 title 'Scientific' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:35 title 'Jams' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:36 title 'Design' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:37 title 'Electronics' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:38 title 'Games' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:39 title 'Minimal' with lines lw 4 +unset output + +## +set output "/var/www/html/csv-reports/images/getfedora-spins-filled.png" +set title "Daily Desktop Spins Total" +plot ["2014-01-01":"2016-12-31"] \ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:27 title 'Total Spins' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($28+$30+$33+$40+$41+$29+$31+$32+$34+$35+$36+$37+$38+$39) title 'XFCE' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($30+$33+$40+$41+$29+$31+$32+$34+$35+$36+$37+$38+$39) title 'LXDE' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($33+$40+$41+$29+$31+$32+$34+$35+$36+$37+$38+$39) title 'Mate' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($40+$41+$29+$31+$32+$34+$35+$36+$37+$38+$39) title 'Cinnamon' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($41+$29+$31+$32+$34+$35+$36+$37+$38+$39) title 'KDE' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($29+$31+$32+$34+$35+$36+$37+$38+$39) title 'SoaS' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($31+$32+$34+$35+$36+$37+$38+$39) title 'Security' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($32+$34+$35+$36+$37+$38+$39) title 'Robotics' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($34+$35+$36+$37+$38+$39) title 'Scientific' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($35+$36+$37+$38+$39) title 'Jams' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($36+$37+$38+$39) title 'Design' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($37+$38+$39) title 'Electronics' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($38+$39) title 'Games' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($39) title 'Minimal' with filledcurves x1 +unset output + +## +set output "/var/www/html/csv-reports/images/getfedora-rough-filled.png" +set title "Daily Labs Stuff Total" +plot ["2014-01-01":"2016-12-31"] \ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:2 title 'Total downloads' with lines lw 4,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($3+27) title 'Editions' with filledcurves x1,\ + '/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($27) title 'Total Spins' with filledcurves x1 +unset output