NAME

Log::Dispatch::UDP - Log messages to a remote UDP socket

VERSION

version 0.01

SYNOPSIS

  use Log::Dispatch;

  my $log = Log::Dispatch->new(
    outputs => [
        [
            'UDP'
            host      => $destination_host,
            port      => $destination_port,
            min_level => 'info',
        ],
    ],
  );

  $log->info('my message');

DESCRIPTION

This class can be used to write messages to a UDP socket listening on some remote host. The datagrams themselves contain only the messages (there's no real structure to them), so you can easily listen in using netcat.

SEE ALSO

Log::Dispatch

AUTHOR

Rob Hoelz <rob@hoelz.ro>

COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Rob Hoelz.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

BUGS

Please report any bugs or feature requests on the bugtracker website https://github.com/hoelzro/log-dispatch-udp/issues

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.