|
NAMENagios::Plugin - A family of perl modules to streamline writing Nagios plugins SYNOPSIS # Constants OK, WARNING, CRITICAL, and UNKNOWN are exported by default
# See also Nagios::Plugin::Functions for a functional interface
use Nagios::Plugin;
# Constructor
$np = Nagios::Plugin->new; # OR
$np = Nagios::Plugin->new( shortname => "PAGESIZE" ); # OR
# use Nagios::Plugin::Getopt to process the @ARGV command line options:
# --verbose, --help, --usage, --timeout and --host are defined automatically.
$np = Nagios::Plugin->new(
usage => "Usage: %s [ -v|--verbose ] [-H <host>] [-t <timeout>] "
. "[ -c|--critical=<threshold> ] [ -w|--warning=<threshold> ]",
);
# add valid command line options and build them into your usage/help documentation.
$np->add_arg(
spec => 'warning|w=s',
help => '-w, --warning=INTEGER:INTEGER . See '
. 'http://nagiosplug.sourceforge.net/developer-guidelines.html#THRESHOLDFORMAT '
. 'for the threshold format. ',
);
# Parse @ARGV and process standard arguments (e.g. usage, help, version)
$np->getopts;
# Exit/return value methods - nagios_exit( CODE, MESSAGE ),
# nagios_die( MESSAGE, [CODE])
$page = retrieve_page($page1)
or $np->nagios_exit( UNKNOWN, "Could not retrieve page" );
# Return code: 3;
# output: PAGESIZE UNKNOWN - Could not retrieve page
test_page($page)
or $np->nagios_exit( CRITICAL, "Bad page found" );
# nagios_die() is just like nagios_exit(), but return code defaults
# to UNKNOWN
$page = retrieve_page($page2)
or $np->nagios_die( "Could not retrieve page" );
# Return code: 3;
# output: PAGESIZE UNKNOWN - Could not retrieve page
# Threshold methods
$code = $np->check_threshold(
check => $value,
warning => $warning_threshold,
critical => $critical_threshold,
);
$np->nagios_exit( $code, "Threshold check failed" ) if $code != OK;
# Message methods (EXPERIMENTAL AND SUBJECT TO CHANGE) -
# add_message( CODE, $message ); check_messages()
for (@collection) {
if (m/Error/) {
$np->add_message( CRITICAL, $_ );
} else {
$np->add_message( OK, $_ );
}
}
($code, $message) = $np->check_messages();
nagios_exit( $code, $message );
# If any items in collection matched m/Error/, returns CRITICAL and
# the joined set of Error messages; otherwise returns OK and the
# joined set of ok messages
# Perfdata methods
$np->add_perfdata(
label => "size",
value => $value,
uom => "kB",
threshold => $threshold,
);
$np->add_perfdata( label => "time", ... );
$np->nagios_exit( OK, "page size at http://... was ${value}kB" );
# Return code: 0;
# output: PAGESIZE OK - page size at http://... was 36kB \
# | size=36kB;10:25;25: time=...
DESCRIPTIONNagios::Plugin and its associated Nagios::Plugin::* modules are a family of perl modules to streamline writing Nagios plugins. The main end user modules are Nagios::Plugin, providing an object-oriented interface to the entire Nagios::Plugin::* collection, and Nagios::Plugin::Functions, providing a simpler functional interface to a useful subset of the available functionality. The purpose of the collection is to make it as simple as possible for developers to create plugins that conform the Nagios Plugin guidelines (http://nagiosplug.sourceforge.net/developer-guidelines.html). EXPORTSNagios status code constants are exported by default: OK
WARNING
CRITICAL
UNKNOWN
DEPENDENT
The following variables are also exported on request:
CONSTRUCTOR Nagios::Plugin->new;
Nagios::Plugin->new( shortname => 'PAGESIZE' );
Nagios::Plugin->new(
usage => "Usage: %s [ -v|--verbose ] [-H <host>] [-t <timeout>]
[ -c|--critical=<critical threshold> ] [ -w|--warning=<warning threshold> ] ",
version => $VERSION,
blurb => $blurb,
extra => $extra,
url => $url,
license => $license,
plugin => basename $0,
timeout => 15,
);
Instantiates a new Nagios::Plugin object. Accepts the following named arguments:
OPTION HANDLING METHODS"Nagios::Plugin" provides these methods for accessing the functionality in "Nagios::Plugin::Getopt".
EXIT METHODS
THRESHOLD METHODSThese provide a top level interface to the "Nagios::Plugin::Threshold" module; for more details, see Nagios::Plugin::Threshold and Nagios::Plugin::Range.
MESSAGE METHODSEXPERIMENTAL AND SUBJECT TO CHANGE add_messages and check_messages are higher-level convenience methods to add and then check a set of messages, returning an appropriate return code and/or result message. They are equivalent to maintaining a set of @critical, @warning, and and @ok message arrays (add_message), and then doing a final if test (check_messages) like this: if (@critical) {
nagios_exit( CRITICAL, join(' ', @critical) );
}
elsif (@warning) {
nagios_exit( WARNING, join(' ', @warning) );
}
else {
nagios_exit( OK, join(' ', @ok) );
}
PERFORMANCE DATA METHODS
EXAMPLES"Enough talk! Show me some examples!" See the file 'check_stuff.pl' in the 't' directory included with the Nagios::Plugin distribution for a complete working example of a plugin script. VERSIONINGThe Nagios::Plugin::* modules are currently experimental and so the interfaces may change up until Nagios::Plugin hits version 1.0, although every attempt will be made to keep them as backwards compatible as possible. SEE ALSOSee Nagios::Plugin::Functions for a simple functional interface to a subset of the available Nagios::Plugin functionality. See also Nagios::Plugin::Getopt, Nagios::Plugin::Range, Nagios::Plugin::Performance, Nagios::Plugin::Range, and Nagios::Plugin::Threshold. The Nagios Plugin project page is at http://nagiosplug.sourceforge.net. BUGSPlease report bugs in these modules to the Nagios Plugin development team: nagiosplug-devel@lists.sourceforge.net. AUTHORMaintained by the Nagios Plugin development team - http://nagiosplug.sourceforge.net. Originally by Ton Voon, <ton.voon@altinity.com>. COPYRIGHT AND LICENSECopyright (C) 2006 by Nagios Plugin Development Team This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.4 or, at your option, any later version of Perl 5 you may have available.
|