From: Joerg Jaspert Date: Tue, 16 Dec 2008 21:35:45 +0000 (+0100) Subject: logs.py X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=faf17643a889cf93d99f5b1cb597ebe85090d5b7;hp=8ed0b27e8295d5666adcf3b5a68264ededfd5f2f;p=dak.git logs.py add my modifications Signed-off-by: Joerg Jaspert --- diff --git a/ChangeLog b/ChangeLog index 390c1fc3..1db58f60 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,13 @@ 2008-12-16 Joerg Jaspert * tools/logs.py: Added script from Thomas. + Modifications from me: + - Use path entries that fit ftpmaster dak user + - Make the bz2 extension optional for log files, so we can run it + out of cron.dinstall, where it is not yet compressed. + - Also show the two largest time killers in the totals graph. + - do not drop old entries from the cachefile + - fiddle with the color palette 2008-12-15 Joerg Jaspert diff --git a/tools/logs.py b/tools/logs.py index 336a68af..d77d7d20 100755 --- a/tools/logs.py +++ b/tools/logs.py @@ -6,11 +6,11 @@ import os,re,datetime, sys import tempfile, time -ITEMS_TO_KEEP = 10 -CACHE_FILE = os.path.join(os.path.dirname(sys.argv[0]),'time_cache') -GRAPH_DIR = '/home/tviehmann/public_html/stat' +ITEMS_TO_KEEP = 20 +CACHE_FILE = '/srv/ftp.debian.org/misc/dinstall_time_cache' +GRAPH_DIR = '/srv/ftp.debian.org/web/stat' -LINE = re.compile(r'(?:|.*/)dinstall_(\d{4})\.(\d{2})\.(\d{2})-(\d{2}):(\d{2}):(\d{2})\.log\.bz2:'+ +LINE = re.compile(r'(?:|.*/)dinstall_(\d{4})\.(\d{2})\.(\d{2})-(\d{2}):(\d{2}):(\d{2})\.log(?:\.bz2)?:'+ r'Archive maintenance timestamp \d+ \(([^\)]*)\): (\d{2}):(\d{2}):(\d{2})$') UNSAFE = re.compile(r'[^a-zA-Z/\._:0-9\- ]') @@ -19,7 +19,7 @@ graphs = {"dinstall1": {"keystolist":["pg_dump1", "i18n 1", "accepted", "make-su "showothers":True}, "dinstall2": {"keystolist":['External Updates', 'p-u-new', 'o-p-u-new', 'cruft', 'import-keyring', 'overrides', 'cleanup', 'scripts', 'mirror hardlinks', 'stats', 'compress'], "showothers":False}, - "totals":{"keystolist":[],"showothers":True}} + "totals":{"keystolist":["apt-ftparchive", "apt-ftparchive cleanup"],"showothers":True}} #'mirror hardlinks', 'apt-ftparchive', 'logremove', 'startup', 'import-keyring', 'release files', 'accepted', 'stats', 'o-p-u-new', 'i18n 2', 'locked part finished', 'i18n 1', 'cruft', 'pdiff', 'init', 'cleanup', , 'p-u-new', 'run-parts', 'compress', 'scripts', 'expire_dumps', 'removed', 'make-suite-file-list', 'pg_dump1', 'pg_dump2', 'overrides', 'reports', 'merkel projectb push', 'buildd', 'apt-ftparchive cleanup', 'w-b' @@ -71,13 +71,13 @@ if (wantkeys-ks): datakeys = d.keys() datakeys.sort() -datakeys = datakeys[-ITEMS_TO_KEEP:] f = open(CACHE_FILE+".tmp","w") for dk in datakeys: print >> f, dk+'\t'+'\t'.join( ["%s:%s"%(k,str(d[dk][k])) for k in kl if k in d[dk]]) f.close() os.rename(CACHE_FILE+".tmp", CACHE_FILE) +datakeys = datakeys[-ITEMS_TO_KEEP:] def dump_file(outfn,keystolist, showothers): showothers = (showothers and 1) or 0 @@ -98,10 +98,8 @@ def dump_file(outfn,keystolist, showothers): #d[["ts"]] <- as.POSIXct(d[["timestamp"]]) k = setdiff(names(d),c("ts","timestamp")) #palette(rainbow(max(length(k),2))) - palette(c("midnightblue", "gold", "turquoise", "cyan", "black", "red", "OrangeRed", "green3", "blue", - "magenta", "tomato4", - "violetred2","thistle4", "steelblue2", "springgreen4", - "salmon","gray")) + palette(c("midnightblue", "gold", "turquoise", "plum4", "palegreen1", "OrangeRed", "green4", "blue", + "magenta", "darkgoldenrod3", "tomato4", "violetred2","thistle4", "steelblue2", "springgreen4", "salmon","gray")) #plot(d[["runtime"]],d[["compress"]],type="l",col="blue") #lines(d[["runtime"]],d[["logremove"]],type="l",col="red") #legend(as.POSIXct("2008-12-05"),9500,"logremove",col="red",lty=1)