NAME

BuzzSaw::Parser::RFC3339 - BuzzSaw parser for log entries with the RFC3339 dates

VERSION

This documentation refers to BuzzSaw::Parser::RFC3339 version 0.12.0

SYNOPSIS

use BuzzSaw::Parser::RFC3339;

my $parser = BuzzSaw::Parser::RFC3339->new();

while (defined (my $line = $fh->getline) ) { my %event = $parser->parse_line($line); }

DESCRIPTION

This is a Moose class which provides a parser which implements the BuzzSaw::Parser role. It can handle log entries that use the RFC3339 date format (e.g. looks like 2013-03-28T11:57:30.025350+00:00. The parser splits a line into separate parts, e.g. date, program, pid, message.

The BuzzSaw project provides a suite of tools for processing log file entries. Entries in files are parsed and filtered into a set of events of interest which are stored in a database. A report generation framework is also available which makes it easy to generate regular reports regarding the events discovered.

ATTRIBUTES

There are no attributes in this class.

SUBROUTINES/METHODS

%results = $parser->parse_line($log_entry)

This method takes a log entry line as a string and returns a hash which contains the details of the various parts of the entry.

The following date and time attributes will be specified in the returned hash: year, month, day, hour, minute, second. If a time-zone is specified in the log entry it will be returned with the key time_zone. These field names match with the DateTime attributes.

The message attribute will always be defined (even if it is just an empty string). The program and pid attributes are optional.

DEPENDENCIES

This module is powered by Moose. This module implements the BuzzSaw::Parser Moose role.

SEE ALSO

BuzzSaw, BuzzSaw::Filter

PLATFORMS

This is the list of platforms on which we have tested this software. We expect this software to work on any Unix-like platform which is supported by Perl.

ScientificLinux6

BUGS AND LIMITATIONS

Please report any bugs or problems (or praise!) to bugs@lcfg.org, feedback and patches are also always very welcome.

AUTHOR

    Stephen Quinney <squinney@inf.ed.ac.uk>

LICENSE AND COPYRIGHT

    Copyright (C) 2012 University of Edinburgh. All rights reserved.

This library is free software; you can redistribute it and/or modify it under the terms of the GPL, version 2 or later.