|
/Users/cpanrun/depot/main/contrib-patched/perl/CPAN/src/Nagios-Object/blib/lib/Nagios/StatusLog.pm |
Nagios::StatusLog, Nagios::(Service|Host|Program)::Status
Reads the Nagios status log and returns ::Status objects that can be used to get status information about a host. For Nagios version 2.x logs, pass in the Version => 2.0 parameter to new().
my $log = Nagios::StatusLog->new(
Filename => "/var/opt/nagios/status.log",
Version => 1.0
);
$localhost = $log->host( "localhost" );
print "status of localhost is now ",$localhost->status(),"\n";
$log->update();
print "status of localhost is now ",$localhost->status(),"\n";
# for Nagios v2.0
my $log = Nagios::StatusLog->new(
Filename => "/var/opt/nagios/status.dat",
Version => 2.0
);
new()update()service()Nagios::Service::Status has the following accessor methods (For V1): host_name description status current_attempt state_type last_check next_check check_type checks_enabled accept_passive_service_checks event_handler_enabled last_state_change problem_has_been_acknowledged last_hard_state time_ok current_notification_number time_warning time_critical process_performance_data notifications_enabled latency scheduled_downtime_depth is_flapping plugin_output percent_state_change execution_time time_unknown failure_prediction_enabled last_notification obsess_over_service flap_detection_enabled
list_services()my @all_services = $log->list_services;
list_services_on_host()my @host_services = $log->list_services_on_host($hostname); my @host_services = $log->list_services_on_host($nagios_object);
host()Nagios::Host::Status has the following accessor methods (for V1): host_name status last_check last_state_change problem_has_been_acknowledged time_up time_down time_unreachable last_notification current_notification_number notifications_enabled event_handler_enabled checks_enabled flap_detection_enabled is_flapping percent_state_change scheduled_downtime_depth failure_prediction_enabled process_performance_data plugin_output
list_hosts()my @hosts = $log->list_hosts;
info() [Nagios v2 logs only]created()
and version().
my $i = $log->info;
printf "Logfile created at %s unix epoch time for Nagios verion %s\n",
$i->created,
$i->version;
program()Nagios::Program::Status has the following accessor methods (For V1): program_start nagios_pid daemon_mode last_command_check last_log_rotation enable_notifications execute_service_checks accept_passive_service_checks enable_event_handlers obsess_over_services enable_flap_detection enable_failure_prediction process_performance_data
This module contains 4 packages: Nagios::StatusLog, Nagios::Host::Status,
Nagios::Service::Status, and Nagios::Program::Status. The latter 3 of
them are mostly generated at compile-time in the BEGIN block. The
accessor methods are real subroutines, not AUTOLOAD, so making a ton
of calls to this module should be fairly quick. Also, update() is set
up to only do what it says - updating from a fresh logfile should not
invalidate your existing ::Status objects.
Al Tobey <tobeya@tobert.org>
Nagios::Host Nagios::Service
|
/Users/cpanrun/depot/main/contrib-patched/perl/CPAN/src/Nagios-Object/blib/lib/Nagios/StatusLog.pm |