Repository URL to install this package:
|
Version:
7.3.6 ▾
|
##########################################################################
# $Id: init,v 1.14 2006/12/20 15:25:09 bjorn Exp $
##########################################################################
########################################################
# This was written and is maintained by:
# Kirk Bauer <kirk@kaybee.org>
#
# Please send all comments, suggestions, bug reports,
# etc, to kirk@kaybee.org.
########################################################
$Detail = $ENV{'LOGWATCH_DETAIL_LEVEL'} || 0;
while (defined($ThisLine = <STDIN>)) {
if (( $ThisLine =~ /open\(.*\): No such file or directory/) or
( $ThisLine =~ /Id "r" respawning too fast: disabled for 5 minutes/) or
( $ThisLine =~ /Re-reading inittab/) or
( $ThisLine =~ /.* main process ended, respawning/)) {
# We don't care about these
}
elsif ( $ThisLine =~ s/Switching to runlevel: (.)\s*$/$1/ ) {
# Which runlevel did we change to?
chomp ($ThisLine);
$RunLevel{$ThisLine}++;
}
elsif ( $ThisLine =~ s/^Entering runlevel: (.)\s*$/$1/ ) {
# Which runlevel did we enter?
chomp ($ThisLine);
$RunLevel{$ThisLine}++;
}
elsif ( $ThisLine =~ s/^Trying to re-exec init// ) {
# Look for telinit executions
chomp ($ThisLine);
$ReExecInit++;
}
elsif ( $ThisLine =~ /Re-executing \/sbin\/init/) {
$ReExecSbinInit++;
}
elsif ( ($Name,$Cause) = ($ThisLine =~ /(.*) main process \([0-9]*\) killed by (.*) /)) {
$ProcessKilled{"$Name,$Cause"}++;
}
elsif ( ($Name, $Status) = ($ThisLine =~ /(.*) main process \([0-9]*\) terminated with status ([0-9]*)/)) {
$ProcessTerminated{"$Name,Status"}++;
}
else {
# report any unmatched entries
push @OtherList,$ThisLine;
}
}
if ((keys %RunLevel) and ($Detail >= 10)) {
foreach $Level (sort keys %RunLevel) {
print " Entered or switched to runlevel " . $Level . ": " . $RunLevel{$Level} . " Time(s)\n";
}
}
if ($ReExecInit) {
print "\n\nRe-execs of init: $ReExecInit times\n";
}
if ($ReExecSbinInit) {
print "\n\nRe-executing \/sbin\/init/: $ReExecSbinInit times\n";
}
if ((keys %ProcessKilled) and ($Detail >=10)) {
print "\nKilled processses:\n";
foreach (keys %ProcessKilled) {
my ($Name,$Cause)=split ",";
print " Process " . $Name. " killed by " . $Cause . ": " . $ProcessKilled{"$Name,$Cause"} . " Time(s)\n";
}
}
if ((keys %ProcessTerminated) and ($Detail >=10)) {
print "\nTerminated processses:\n";
foreach (keys %ProcessTerminated) {
my ($Name,$Status)=split ",";
print " Process " . $Name. " terminated with status " . $Cause . ": " . $ProcessTerminated{"$Name,$Status"} . " Time(s)\n";
}
}
if ($#OtherList >= 0) {
print "\n**Unmatched Entries**\n";
print @OtherList;
}
exit(0);
# vi: shiftwidth=3 tabstop=3 syntax=perl et