Group
Extension

Log-Saftpresse/lib/Log/Saftpresse/Input/Journald.pm

package Log::Saftpresse::Input::Journald;

use Moose;

# ABSTRACT: log input for systemd-journald
our $VERSION = '1.6'; # VERSION


use JSON;

extends 'Log::Saftpresse::Input::Command';

has 'command' => ( is => 'ro', isa => 'Str', default => 'journalctl -f -o json');

has 'lowercase' => ( is => 'ro', isa => 'Bool', default => 1 );
has 'remove_address_fields'  => ( is => 'ro', isa => 'Bool', default => 1 );
has 'merge_trusted_fields'  => ( is => 'ro', isa => 'Bool', default => 1 );

sub process_line {
  my ( $self, $line ) = @_;
  my $data = from_json( $line );
  if( $self->lowercase ) {
    my %new = map { lc $_ => $data->{$_} } keys %$data;
    $data = \%new;
  }
  foreach my $key ( keys %$data ) {
    if( $self->remove_address_fields && $key =~ /^__/ ) {
      delete( $data->{$key} );
    }
    if( $self->merge_trusted_fields && $key =~ /^_[^_]/ ) {
      my $newkey = $key;
      $newkey =~ s/^_//;
      $data->{$newkey} = $data->{$key};
      delete( $data->{$key} );
    }
  }
  return %$data;
}

1;

__END__

=pod

=encoding UTF-8

=head1 NAME

Log::Saftpresse::Input::Journald - log input for systemd-journald

=head1 VERSION

version 1.6

=head1 Description

This input will read events from the systemd journal.

=head1 Synopsis

  <Input systemd>
    module = "Journald"
  </Input>

=head1 Parameters

=over

=item lowercase (default: 1)

Systemd fields will be transformed to lowercase.

=item remove_address_fields (default: 1)

Remove systemd journal address informations.

=item merge_trusted_fields (default: 1)

Will remove the "_" prefix of systemd trusted fields.

=back

=head1 AUTHOR

Markus Benning <ich@markusbenning.de>

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 1998 by James S. Seymour, 2015 by Markus Benning.

This is free software, licensed under:

  The GNU General Public License, Version 2, June 1991

=cut


Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.