Changeset 29105
- Timestamp:
- Sep 1, 2010, 4:09:20 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/who_uses_the_cluster/_who_uses_the_cluster_analyze.pl
r29103 r29105 26 26 print "<table border=\"1\">\n"; 27 27 # Scan each logfile 28 $currentColumn = 0;29 28 foreach $computer (@HOSTS) { 30 29 $LOGFILE=$LOGFILE_BASE.$computer; … … 40 39 # We don't want the 'top' process to be shown 41 40 $line =~ s/\s+/;/g; 42 #print "$line\n";41 print "$line\n"; 43 42 $line =~ s/^;//g; 44 43 @values = split ';', $line; … … 47 46 $proc =$values[8]; 48 47 $mem =$values[9]; 49 $procname = join(" ", @values[11, -1]); #$values[11..-1]; 48 $size = scalar(@values); 49 $procname = join(" ", @values[11..$size]); #$values[11..-1]; 50 #print "$size PROCNAME = [$procname]\n"; 50 51 if (!defined $summary{$pid}) { 51 52 # The pid is a new one
Note:
See TracChangeset
for help on using the changeset viewer.
