[Swift-commit] r2238 - log-processing
noreply at svn.ci.uchicago.edu
noreply at svn.ci.uchicago.edu
Sun Sep 21 14:46:31 CDT 2008
Author: benc
Date: 2008-09-21 14:46:31 -0500 (Sun, 21 Sep 2008)
New Revision: 2238
Modified:
log-processing/queue-state-transitions
Log:
queue delay graphs had all events ending at t=infinity rather than at point job becomes active/fails
Modified: log-processing/queue-state-transitions
===================================================================
--- log-processing/queue-state-transitions 2008-09-21 19:20:54 UTC (rev 2237)
+++ log-processing/queue-state-transitions 2008-09-21 19:46:31 UTC (rev 2238)
@@ -16,6 +16,7 @@
$ts = $1;
$job = $2;
$state = $3;
+ $linerest = $4;
if($state eq "Submitted") {
print "$n";
@@ -23,6 +24,7 @@
} elsif( ($job eq $prevjob) && ($active) ) {
if($active == 1) {
print $n;
+ print "$ts $job DoneQueueing $linerest\n";
$active = 0;
}
} else {
More information about the Swift-commit
mailing list