~ubuntu-security/ubuntu-cve-tracker/master

« back to all changes in this revision

Viewing changes to graphing/exposure.plot.template

  • Committer: Steve Beattie
  • Date: 2019-02-19 06:18:27 UTC
  • Revision ID: sbeattie@ubuntu.com-20190219061827-oh57fzcfc1u9dlfk
The ubuntu-cve-tracker project has been converted to git.

Please use 'git clone https://git.launchpad.net/ubuntu-cve-tracker' to
get the converted tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
set term png small size 640,480
2
 
set output "exposure.png"
3
 
 
4
 
#set key noenhanced
5
 
 
6
 
#set auto x
7
 
set key top center
8
 
set xtics out
9
 
set xlabel "Days"
10
 
set ylabel "CVEs"
11
 
set xrange [0:]
12
 
set style fill solid
13
 
 
14
 
# title is templatized
15
 
set title "Exposure to Open CVEs"
16
 
 
17
 
plot "exposure.data" using ($2+$3+$4):xtic(1) with boxes lc rgb 'black' title 'Critical', \
18
 
     "exposure.data" using ($3+$4):xtic(1) with boxes lc rgb 'red' title 'High', \
19
 
     "exposure.data" using ($4):xtic(1) with boxes lc rgb 'orange' title 'Medium'