logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Monitoring::Livestatus::Class - Object-Oriented interface for Monitoring::Livestatus

Attributes

peer
       Connection point to the status check_mk livestatus addon. This can be a unix domain or tcp socket.

       Socket

           my $class = Monitoring::Livestatus::Class->new(
               peer => '/var/lib/nagios3/rw/livestatus.sock'
           );

       TCPConnection

           my $class = Monitoring::Livestatus::Class->new(
               peer => '192.168.1.1:2134'
           );

Author

       Robert Bohne, "<rbo at cpan.org>"

Bugs

       Please  report  any  bugs  or  feature  requests  to "bug-Monitoring-Livestatus-Class at rt.cpan.org", or
       through                    the                    web                    interface                     at
       <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Monitoring-Livestatus-Class>.

Contributors

       nierlein: Sven Nierlein <nierlein@cpan.org>

Description

       This module is an object-oriented interface for Monitoring::Livestatus

       Themoduleisstillinanearlystageofdevelopment,therecanbesomeapichangesbetweenreleases.

Environment Variables

MONITORING_LIVESTATUS_CLASS_TRACE
       Print tracer output from this object.

   MONITORING_LIVESTATUS_CLASS_TEST_PEER
       Set peer for live tests.

Internal Methods

       BUILD
           Initializes the internal Monitoring::Livestatus object.

       TRACE
           Get the trace level

Methods

table_sources
       Arguments: none

       Returns: @list

       Get a list of all table class names.

   table
       Arguments: $table_name

       Returns: $table_object

       Returns a table object based on Monitoring::Livestatus::Class::Base::Table

Name

       Monitoring::Livestatus::Class - Object-Oriented interface for Monitoring::Livestatus

Repository

Support

       You can find documentation for this module with the perldoc command.

           perldoc Monitoring::Livestatus::Class

       You can also look for information at:

       •   RT: CPAN's request tracker

           <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Monitoring-Livestatus-Class>

       •   AnnoCPAN: Annotated CPAN documentation

           <http://annocpan.org/dist/Monitoring-Livestatus-Class>

       •   CPAN Ratings

           <http://cpanratings.perl.org/d/Monitoring-Livestatus-Class>

       •   Search CPAN

           <http://search.cpan.org/dist/Monitoring-Livestatus-Class/>

Synopsis

           use Monitoring::Livestatus::Class;

           my $class = Monitoring::Livestatus::Class->new(
               peer => '/var/lib/nagios3/rw/livestatus.sock'
           );

           my $hosts = $class->table('hosts');
           my @data = $hosts->columns('display_name')->filter(
               { display_name => { '-or' => [qw/test_host_47 test_router_3/] } }
           )->hashref_array();
           print Dumper \@data;

Todo:

       •   Bettering the documentation

See Also