Apache-Logmonster
view release on metacpan or search on metacpan
lib/Apache/Logmonster.pm view on Meta::CPAN
package Apache::Logmonster;
use strict;
use warnings;
our $VERSION = '5.36';
use Carp;
use Compress::Zlib;
use Cwd;
#use Data::Dumper;
use Date::Parse;
use FileHandle;
use File::Basename;
use File::Copy;
use Regexp::Log;
use lib 'lib';
use Apache::Logmonster::Utility;
use Regexp::Log::Monster;
my ( $util, $err, %fhs, $debug );
t/Logmonster.t view on Meta::CPAN
#!/usr/bin/perl
use strict;
use warnings;
use Cwd;
use Data::Dumper;
use English qw( -no_match_vars );
use Test::More;
if ( $OSNAME =~ /cygwin|win32|windows/i ) {
plan skip_all => "no windows support";
};
use lib 'lib';
use lib 'inc';
( run in 0.239 second using v1.01-cache-2.11-cpan-4d50c553e7e )