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

NAME

Opsview::REST::Status - Convenience object to transform its attributes into a /status URL endpoint

SYNOPSIS

    use Opsview::REST::Status;

    my $status = Opsview::REST::Status->new(
        'host',
        host   => [qw/ hostA hostB /], 
        filter => 'unhandled',
    );
    $status->as_string; # '/status/host?filter=unhandled&host=hostA&host=hostB'

DESCRIPTION

You shouldn't be calling this directly, but be using the "status" method in Opsview::REST.

AUTHOR

  • Miquel Ruiz <mruiz@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Miquel Ruiz.

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