Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ GRFCSV = \
$(GDIR)/cve-fixtime.svg \
$(GDIR)/cve-oldest.svg \
$(GDIR)/cve-pie-chart.svg \
$(GDIR)/cvuln-per-year.svg \
$(GDIR)/cvuln-per-year-intro.svg \
$(GDIR)/cvuln-per-year.svg \
$(GDIR)/daniel-commit-share.svg \
$(GDIR)/daniel-vs-rest.svg \
$(GDIR)/date-of-year.svg \
Expand All @@ -86,6 +86,7 @@ GRFCSV = \
$(GDIR)/high-vuln-reports.svg \
$(GDIR)/http-over-time.svg \
$(GDIR)/ifdef-over-time.svg \
$(GDIR)/install-history.svg \
$(GDIR)/knownvulns-per-line.svg \
$(GDIR)/line-complex.svg \
$(GDIR)/lines-over-time.svg \
Expand Down Expand Up @@ -281,6 +282,11 @@ $(GDIR)/h1-per-year.svg: $(INCLUDE) $(DDIR)/h1-reports.csv
$(DDIR)/h1-reports.csv:
cp $(SDIR)/h1-reports.md $@

$(GDIR)/install-history.svg: $(INCLUDE) $(DDIR)/install-history.csv $(SDIR)/install-history.plot
$(GNUPLOT)
$(DDIR)/install-history.csv: $(SDIR)/install-history.md
cp $(SDIR)/install-history.md $@

$(GDIR)/testinfra-per-test.svg: $(INCLUDE) $(DDIR)/testinfra-per-test.csv
$(GNUPLOT)
$(DDIR)/testinfra-per-test.csv: $(DDIR)/testinfra-over-time.csv $(DDIR)/tests-over-time.csv $(SDIR)/plotdivision.pl
Expand Down
1 change: 1 addition & 0 deletions all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ graphs on the dashboard = graphs.svg
hackerone = h1-per-year.svg
http versions = http-over-time.svg
ifdef density = ifdef-over-time.svg
install history = install-history.svg
lines added = lines-person.svg
mail = mail.svg
man pages = manpages-over-time.svg
Expand Down
5 changes: 5 additions & 0 deletions install-history.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
1996-11-11; 1
2012-05-16; 550000000
2016-05-31; 1000000000
2022-02-10; 10000000000
2026-05-04; 20000000000
25 changes: 25 additions & 0 deletions install-history.plot
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# SVG output
load "stats/terminal.include"

set title "Number of installs globally" font ",48"
set key top left

set ylabel "Number of installations"

set style line 1 linecolor rgb '#40c0ad' linetype 1 linewidth 5

set grid
unset border

set timefmt "%Y-%m-%d"
set xdata time
set xtics rotate 3600*24*365.25 nomirror out
unset mxtics
set ytics nomirror

load "stats/logo.include"

set format x "%Y"
set format y "%.0s%c"
set datafile separator ";"
plot ARG1.'/install-history.csv' using 1:2 smooth bezier with lines linestyle 1 title ""