The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Juno::Check::FPing - An FPing check for Juno

VERSION

version 0.005

DESCRIPTION

ATTRIBUTES

hosts

An arrayref of hosts to check, overriding the default given to Juno.pm.

    my $juno = Juno->new(
        hosts  => [ 'Tom', 'Jerry' ],
        checks => {
            FPing => {
                hosts => [ 'Micky', 'Mini' ], # this overrides tom and jerry
            },
        },
    );

Now the FPing check will not check Tom and Jerry, but rather Micky and Mini.

This attribute derives from Juno::Role::Check.

interval

An integer of seconds between each check (nor per-host).

This attribute derives from Juno::Role::Check.

on_success

A coderef to run when making a successful request.

This attribute derives from Juno::Role::Check.

on_fail

A coderef to run when making an unsuccessful request.

This attribute derives from Juno::Role::Check.

on_result

A coderef to run when getting a response - any response. This is what you use in case you want more control over what's going on.

This attribute derives from Juno::Role::Check.

on_before

A coderef to run before making a request.

watcher

Holds the watcher for the FPing check timer.

This attribute derives from Juno::Role::Check.

METHODS

analyze_fping(TIMING)

Analyzes the fping results, returns timing, packet loss and average.

check

Juno will call this method for you. You should not call it yourself.

run

Juno will call this method for you. You should not call it yourself.

AUTHORS

  • Sawyer X <xsawyerx@cpan.org>

  • Adam Balali <adamba@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Sawyer X.

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