File:Kernel patches stats.png

From OpenVZ Virtuozzo Containers Wiki
Revision as of 09:21, 27 February 2008 by Kir (talk | contribs) (uploaded a new version of "Image:Kernel patches stats.png": no border, no tics at right and top, no xlabel)
Jump to: navigation, search
Original file(1,600 × 1,200 pixels, file size: 52 KB, MIME type: image/png)

Description

This graph shows how many patches from OpenVZ developers are merged in mainstream, for each kernel version.

It is done in gnuplot. Data set produced by a simple shell script working on git repository.

Source code

Collect data

Here is the script to produce the data for the graph:

#!/bin/sh

latest=$(git tag | grep -v -- -rc | tail -n1 | sed -e 's/^.*\.\(.*\)$/\1/')
((latest++))

get_tag_date() {
        echo $(git show $1 | egrep ^Date: | head -n1) |
                sed 's/^Date: ... \(.*\) [-+]....$/\1/' |
                sed 's/ ..:..:..//' | sed 's/ /-/g'
}

for f in $(seq 13 $latest); do
        v1=v2.6.$((f-1))
        d1=$(get_tag_date $v1)
        if [ $f = $latest ]; then
                v2="HEAD   "
        else
                v2=v2.6.$f
        fi
        d2=$(get_tag_date $v2)
        echo -n $d2 $v2 " "
        git log --pretty=short --no-merges $v1..$v2 | grep 'Author:' | egrep \
                '@openvz.org|@parallels.com|@sw.ru|@swsoft.com|@sw.com.sg|adobriyan@|kuznet@' | wc -l
done | sed 's/ /\t/g'

Draw the graph

Here is the script to produce the graph. Note it calls the previous script under the name 'count'.

#!/bin/sh

if test "$1" != "-f"; then
        git pull
        sh count > time.dat
fi

DATE=$(date '+%d %b %Y')
MAXY=$(awk 'BEGIN {max=0}; ($3 > max) {max=$3}; END {print max+50}' < time.dat)

export GDFONTPATH=/usr/share/fonts/msttcorefonts/
cat << EOF | gnuplot > plot.png
set terminal png transparent nocrop enhanced font verdanab 8 size 600,400

set title "OpenVZ team kernel patches progress as of ${DATE}"

unset xlabel
set xdata time
set timefmt "%b-%d-%Y"
set format x "%b\n%Y"

set yrange [ 0 : ${MAXY} ]
set ylabel "Number of patches accepted into mainstream"

set border 3            # no lines at right and top
set xtics nomirror      # no tics at top
set ytics nomirror      # no tics at right

plot 'time.dat' using 1:3 with linespoints pt 7 ps 1.5 lw 2 lt 2 notitle, \
        ''      using 1:3:2 with labels left offset 0,1 rotate notitle, \
        ''      using 1:3:3 with labels left offset 0.7,0 notitle

EOF

File history

Click on a date/time to view the file as it appeared at that time.

(newest | oldest) View ( | ) (10 | 20 | 50 | 100 | 250 | 500)
Date/TimeThumbnailDimensionsUserComment
12:08, 20 March 2011Thumbnail for version as of 12:08, 20 March 20111,600 × 1,200 (47 KB)Glic3rinu (talk | contribs)2.6.38 release
11:48, 2 August 2010Thumbnail for version as of 11:48, 2 August 20101,600 × 1,200 (45 KB)Glic3rinu (talk | contribs)2.6.35 released
17:54, 1 March 2010Thumbnail for version as of 17:54, 1 March 20101,600 × 1,200 (44 KB)Glic3rinu (talk | contribs)
17:52, 1 March 2010Thumbnail for version as of 17:52, 1 March 20101,600 × 1,200 (38 KB)Glic3rinu (talk | contribs)Reverted to version as of 08:50, 14 July 2008
01:59, 30 January 2010Thumbnail for version as of 01:59, 30 January 20101,600 × 1,200 (44 KB)Glic3rinu (talk | contribs)
08:50, 14 July 2008Thumbnail for version as of 08:50, 14 July 20081,600 × 1,200 (38 KB)Kir (talk | contribs)2.6.26 released
12:27, 5 June 2008Thumbnail for version as of 12:27, 5 June 20081,600 × 1,200 (39 KB)Kir (talk | contribs)v2.6.26-rc5
08:46, 19 May 2008Thumbnail for version as of 08:46, 19 May 20081,600 × 1,200 (40 KB)Kir (talk | contribs)
07:14, 4 May 2008Thumbnail for version as of 07:14, 4 May 20081,600 × 1,200 (39 KB)Kir (talk | contribs)Updated to include v2.6.26-rc1
10:15, 17 April 2008Thumbnail for version as of 10:15, 17 April 20081,600 × 1,200 (38 KB)Kir (talk | contribs)updated
(newest | oldest) View ( | ) (10 | 20 | 50 | 100 | 250 | 500)
  • You cannot overwrite this file.

The following 2 pages link to this file:

Metadata