version 1.1, 2004/09/03 19:51:58
|
version 1.5, 2005/03/30 17:24:36
|
Line 1
|
Line 1
|
|
use strict; |
use File::Find; |
use File::Find; |
use POSIX qw(strftime); |
use POSIX qw(strftime); |
use lib '/home/httpd/lib/perl/'; |
use lib '/home/httpd/lib/perl/'; |
use LONCAPA::Configuration; |
use LONCAPA::Configuration; |
use Date::Manip; |
use Date::Manip; |
my $perlvar=LONCAPA::Configuration::read_conf('loncapa.conf'); |
|
$|=1; |
my $start_time=&UnixDate("Aug 30th 00:00:00 2004","%s"); |
find( |
my @counts=('1','10');#,'100','1000','10000','100000','250000'); |
{ |
|
# preprocess => \&only_user_activitylog_files, |
|
# wanted => \&print_filename, |
|
# wanted => \&log_metadata, |
|
wanted => \&process_activitylog_file, |
|
}, |
|
$perlvar->{'lonUsersDir'}.'/'.$perlvar->{'lonDefDomain'}); |
|
&print_data(); |
|
sub only_user_activitylog_files { |
sub only_user_activitylog_files { |
print (join("\n",@_)); |
print (join("\n",@_)); |
return 1; |
return 1; |
} |
} |
|
|
my $start_time=&UnixDate("Aug 30th 00:00:00 2004","%s"); |
|
my %data; |
my %data; |
my $numusers; |
my $numusers; |
|
my %machine; |
sub process_activitylog_file { |
sub process_activitylog_file { |
if ($File::Find::dir=~m|/\d/\d/\d/|) { return; } |
if ($File::Find::dir=~m|/\d/\d/\d/|) { return; } |
if ($_ ne 'activity.log') { return; } |
if ($_ ne 'activity.log') { return; } |
Line 30 sub process_activitylog_file {
|
Line 25 sub process_activitylog_file {
|
my $user=(split('/',$File::Find::dir))[-1]; |
my $user=(split('/',$File::Find::dir))[-1]; |
while (my $line=<FILE>) { |
while (my $line=<FILE>) { |
if ($line !~ /Login/) { next; } |
if ($line !~ /Login/) { next; } |
my ($date)=split(':',$line,2); |
my ($date,$machine)=split(':',$line,3); |
if ($date > 1093838400) { push (@{$data{$date}},$user); } |
if ($date > $start_time) { push (@{$data{$date}},$user); } |
|
$machine{$machine}++; |
} |
} |
if ($numusers%100 == 0) { |
if ($numusers%100 == 0) { |
print "\b\b\b\b\b\b\b\b\b\b\b\b\b\bDid $user"; |
print "\b\b\b\b\b\b\b\b\b\b\b\b\b\bDid $user"; |
} |
} |
} |
} |
|
|
sub print_data { |
sub print_data { |
my $total_login=0; |
my $total_login=0; |
my %byday; |
my %byday; |
Line 46 sub print_data {
|
Line 43 sub print_data {
|
$total_login+=scalar(@{$data{$key}}); |
$total_login+=scalar(@{$data{$key}}); |
my $day=strftime('%F',localtime($key)); |
my $day=strftime('%F',localtime($key)); |
$byday{$day}+=scalar(@{$data{$key}}); |
$byday{$day}+=scalar(@{$data{$key}}); |
|
while ($counts[0] && $total_login >= $counts[0]) { |
|
print("The $counts[0] ($total_login) login was ". |
|
join(', ',@{$data{$key}})."\n"); |
|
shift(@counts); |
|
} |
|
|
} |
} |
foreach my $key (sort(keys(%byday))) { |
foreach my $key (sort(keys(%byday))) { |
print("$key -> $byday{$key}\n"); |
print("$key -> $byday{$key}\n"); |
} |
} |
print("total -> $total_login\n"); |
print("total -> $total_login\n"); |
|
print("\nMachine Logins\n"); |
|
foreach my $key (sort(keys(%machine))) { |
|
print("$key \t-> $machine{$key}\n"); |
|
} |
|
} |
|
|
|
$|=1; |
|
sub main { |
|
my $perlvar=LONCAPA::Configuration::read_conf('loncapa.conf'); |
|
find( |
|
{ |
|
# preprocess => \&only_user_activitylog_files, |
|
# wanted => \&print_filename, |
|
# wanted => \&log_metadata, |
|
wanted => \&process_activitylog_file, |
|
}, |
|
$perlvar->{'lonUsersDir'}.'/'.$perlvar->{'lonDefDomain'}); |
|
&print_data(); |
} |
} |
|
&main(); |
|
|