--- loncom/debugging_tools/login_count.pl 2005/03/30 17:18:04 1.4 +++ loncom/debugging_tools/login_count.pl 2005/03/30 18:04:53 1.7 @@ -5,8 +5,8 @@ use lib '/home/httpd/lib/perl/'; use LONCAPA::Configuration; use Date::Manip; -my $start_time=&UnixDate("Aug 30th 00:00:00 2004","%s"); -my @counts=('1','10','100','1000','10000','100000','250000'); +my $start_time=&UnixDate("Mar 30th 00:00:00 2004","%s"); +my @counts=('1','10','100','1000','10000','100000','250000','1000000'); sub only_user_activitylog_files { @@ -26,8 +26,10 @@ sub process_activitylog_file { while (my $line=) { if ($line !~ /Login/) { next; } my ($date,$machine)=split(':',$line,3); - if ($date > $start_time) { push (@{$data{$date}},$user); } - $machine{$machine}++; + if ($date > $start_time) { + push (@{$data{$date}},$user); + $machine{$machine}++; + } } if ($numusers%100 == 0) { print "\b\b\b\b\b\b\b\b\b\b\b\b\b\bDid $user"; @@ -43,7 +45,7 @@ sub print_data { $total_login+=scalar(@{$data{$key}}); my $day=strftime('%F',localtime($key)); $byday{$day}+=scalar(@{$data{$key}}); - while ($total_login >= $counts[0]) { + while ($counts[0] && $total_login >= $counts[0]) { print("The $counts[0] ($total_login) login was ". join(', ',@{$data{$key}})."\n"); shift(@counts);