Compare commits

...

4 Commits

Author SHA1 Message Date
Asif Bacchus 47acc2684c Updated Logwatch 'SearchDate' custom script. Renamed it.
Updated notes in LogFile config.
2018-09-26 22:54:14 -06:00
Asif Bacchus 9ba6b40904 Corrected path sample in Logfile group configuration. 2018-09-26 02:05:25 -06:00
Asif Bacchus 9aafb7b023 Updated Logfile group configuration. Include archive and time-format. 2018-09-26 02:04:00 -06:00
Asif Bacchus 657bc1e3ee Created date filter for parsing timestamps in logs 2018-09-26 01:53:16 -06:00
2 changed files with 48 additions and 1 deletions

View File

@ -1 +1,11 @@
LogFile = /path/to/your/cfddns.log
# Location of your script's log file, -l parameter
LogFile = /path/to/your/cfddns.log
# Format of logrotate archives for your script. Example assumes compression and
# extension preservation
Archive = /path/to/your/logfile.ext.?.gz
# Apply the correct date/time filtering to match the format of the script's log
# We are using a custom pl script in /etc/logwatch/scripts/shared/
# You don't need to change this unless you have altered the 'stamp' variable in
# the script in which case you will want to update the regex in the custom pl
# script below
*sqFullStampAnywhere

View File

@ -0,0 +1,37 @@
#!/usr/bin/perl
##########################################################################
# $Id$
##########################################################################
###############################################################################
## Filter dates in full-date-time international format, surrounded by square
## brackets located anywhere on a given line
## Format: '[%Y-%m-%d %H:%M:%S]'
###############################################################################
use Logwatch ':dates';
my $Debug = $ENV{'LOGWATCH_DEBUG'} || 0;
### Specify the format of the date/time stamp itself
$SearchDate = TimeFilter('%Y-%m-%d %H:%M:%S');
if ( $Debug > 5 ) {
print STDERR "DEBUG: Inside FullDateTime...\n";
print STDERR "DEBUG: Looking For: " . $SearchDate . "\n";
}
while (defined($ThisLine = <STDIN>)) {
### specify the regex that defines how to find 'SearchDate'
if ($ThisLine =~ m/\[$SearchDate\] /o) {
print $ThisLine;
}
}
# vi: shiftwidth=3 syntax=perl tabstop=3 et
# Local Variables:
# mode: perl
# perl-indent-level: 3
# indent-tabs-mode: nil
# End: