Message::Passing::Filter::Regexp::Log(3) Extension for Regexp::Log with Config::Tiny

SYNOPSIS


use Message::Passing::Filter::Regexp::Log;
my $regex = Message::Passing::Filter::Regexp::Log->new(
regexfile => "./regexfile",
format => ":syslog",
capture => [qw(pri host msg time)]
);
my @fields = $foo->capture;
my $re = $foo->regexp;
while (<>) {
my %data;
@data{@fields} = /$re/; # no need for /o, it's a compiled regexp
};

DESCRIPTION

AUTHOR

chenryn, <[email protected]<gt>

COPYRIGHT AND LICENSE

Copyright (C) 2012 by chenryn

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.14.2 or, at your option, any later version of Perl 5 you may have available.