NAME
FlightRecorder
ABSTRACT
Logging for Distributed Systems
SYNOPSIS
package main;
use FlightRecorder;
my $f = FlightRecorder->new;
# $f->begin('try');
# $f->debug('something happend');
# $f->end;
DESCRIPTION
This package provides a simple mechanism for logging events with context, serializing and distributing the event logs, and producing a transcript of activity to provide insight into the behavior of distributed systems.
INTEGRATES
This package integrates behaviors from:
ATTRIBUTES
This package has the following attributes:
format
format(Str)
This attribute is read-write, accepts (Str)
values, and is optional.
head
head(Str)
This attribute is read-write, accepts (Str)
values, and is optional.
item
item(HashRef)
This attribute is read-only, accepts (HashRef)
values, and is optional.
level
level(Enum[qw(debug info warn error fatal)])
This attribute is read-only, accepts (Enum[qw(debug info warn error fatal)])
values, and is optional.
logs
logs(ArrayRef[HashRef])
This attribute is read-only, accepts (ArrayRef[HashRef])
values, and is optional.
refs
refs(HashRef)
This attribute is read-only, accepts (HashRef)
values, and is optional.
METHODS
This package implements the following methods:
begin
begin(Str $label) : Object
The begin method creates and logs a new context.
branch
branch(Str $label) : Object
The branch method creates and returns a new FlightRecorder object which shares the event log with the parent object. This method creates a new context when called.
data
data(HashRef[Str] $data) : Object
The data method associates arbitrary metadata with the last event.
- data example #1
-
# given: synopsis $f->debug('something happened')->data({ error => 'unknown at ./example line 10' });
debug
debug(Str @message) : Object
The debug method logs a debug
level event with context.
end
end() : Object
The end method logs the end of the current context.
error
error(Str @message) : Object
The error method logs an error
level event with context.
fatal
fatal(Str @message) : Object
The fatal method logs a fatal
level event with context.
info
info(Str @message) : Object
The info method logs an info
level event with context.
output
output(FileHandle $handle) : Str
The output method outputs the last event using the format defined in the format
attribute.
report
report(Str $name, Str $level) : Object
The report method loads and returns the specified report plugin.
serialize
serialize() : HashRef
The serialize method normalizes and serializes the event log and returns it as a hashref
.
succinct
succinct() : Object
The succinct method loads and returns the FlightRecorder::Plugin::Succinct report plugin.
switch
switch(Str $name) : Object
The switch method finds and sets the current context based on the name provided.
verbose
verbose() : Object
The verbose method loads and returns the FlightRecorder::Plugin::Verbose report plugin.
warn
warn(Str @message) : Object
The warn method logs a warn
level event with context.
AUTHOR
Al Newkirk, awncorp@cpan.org
LICENSE
Copyright (C) 2011-2019, Al Newkirk, et al.
This is free software; you can redistribute it and/or modify it under the terms of the The Apache License, Version 2.0, as elucidated in the "license file".