File Coverage

blib/lib/Log/Saftpresse/Plugin/LimitProgram.pm
Criterion Covered Total %
statement 3 10 30.0
branch 0 4 0.0
condition n/a
subroutine 1 2 50.0
pod 1 1 100.0
total 5 17 29.4


line stmt bran cond sub pod time code
1             package Log::Saftpresse::Plugin::LimitProgram;
2              
3 1     1   1517 use Moose;
  1         2  
  1         7  
4              
5             # ABSTRACT: plugin to limit messages by syslog program name
6             our $VERSION = '1.6'; # VERSION
7              
8             extends 'Log::Saftpresse::Plugin';
9              
10             has 'regex' => ( is => 'rw', isa => 'Str', required => 1 );
11              
12             sub process {
13 0     0 1   my ( $self, $stash ) = @_;
14 0           my $regex = $self->regex;
15              
16 0 0         if( ! defined $stash->{'program'} ) {
17 0           return;
18             }
19 0 0         if( $stash->{'program'} !~ /$regex/ ) {
20 0           return('next');
21             }
22            
23 0           return;
24             }
25              
26             1;
27              
28             __END__
29              
30             =pod
31              
32             =encoding UTF-8
33              
34             =head1 NAME
35              
36             Log::Saftpresse::Plugin::LimitProgram - plugin to limit messages by syslog program name
37              
38             =head1 VERSION
39              
40             version 1.6
41              
42             =head1 AUTHOR
43              
44             Markus Benning <ich@markusbenning.de>
45              
46             =head1 COPYRIGHT AND LICENSE
47              
48             This software is Copyright (c) 1998 by James S. Seymour, 2015 by Markus Benning.
49              
50             This is free software, licensed under:
51              
52             The GNU General Public License, Version 2, June 1991
53              
54             =cut