summaryrefslogtreecommitdiffstats
path: root/lib/Nagios/Plugin/Functions.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Nagios/Plugin/Functions.pm')
-rw-r--r--lib/Nagios/Plugin/Functions.pm15
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/Nagios/Plugin/Functions.pm b/lib/Nagios/Plugin/Functions.pm
index 9c20288..e77bc4f 100644
--- a/lib/Nagios/Plugin/Functions.pm
+++ b/lib/Nagios/Plugin/Functions.pm
@@ -14,7 +14,7 @@ our @STATUS_CODES = qw(OK WARNING CRITICAL UNKNOWN DEPENDENT);
14require Exporter; 14require Exporter;
15our @ISA = qw(Exporter); 15our @ISA = qw(Exporter);
16our @EXPORT = (@STATUS_CODES, qw(nagios_exit nagios_die check_messages)); 16our @EXPORT = (@STATUS_CODES, qw(nagios_exit nagios_die check_messages));
17our @EXPORT_OK = qw(%ERRORS %STATUS_TEXT); 17our @EXPORT_OK = qw(%ERRORS %STATUS_TEXT @STATUS_CODES);
18our %EXPORT_TAGS = ( 18our %EXPORT_TAGS = (
19 all => [ @EXPORT, @EXPORT_OK ], 19 all => [ @EXPORT, @EXPORT_OK ],
20 codes => [ @STATUS_CODES ], 20 codes => [ @STATUS_CODES ],
@@ -28,7 +28,7 @@ use constant UNKNOWN => 3;
28use constant DEPENDENT => 4; 28use constant DEPENDENT => 4;
29 29
30our %ERRORS = ( 30our %ERRORS = (
31 'OK' => OK, 31 'OK' => OK,
32 'WARNING' => WARNING, 32 'WARNING' => WARNING,
33 'CRITICAL' => CRITICAL, 33 'CRITICAL' => CRITICAL,
34 'UNKNOWN' => UNKNOWN, 34 'UNKNOWN' => UNKNOWN,
@@ -84,7 +84,8 @@ sub nagios_exit {
84 $output = "$shortname $output" if $shortname; 84 $output = "$shortname $output" if $shortname;
85 if ($arg->{plugin}) { 85 if ($arg->{plugin}) {
86 my $plugin = $arg->{plugin}; 86 my $plugin = $arg->{plugin};
87 $output .= " | ". $plugin->all_perfoutput if $plugin->perfdata; 87 $output .= " | ". $plugin->all_perfoutput
88 if $plugin->perfdata && $plugin->all_perfoutput;
88 } 89 }
89 $output .= "\n"; 90 $output .= "\n";
90 91
@@ -193,7 +194,7 @@ Nagios plugins.
193 # Constants OK, WARNING, CRITICAL, and UNKNOWN exported by default 194 # Constants OK, WARNING, CRITICAL, and UNKNOWN exported by default
194 use Nagios::Plugin::Functions; 195 use Nagios::Plugin::Functions;
195 196
196 # nagios_exit( ODE, $message ) - exit with error code CODE, 197 # nagios_exit( CODE, $message ) - exit with error code CODE,
197 # and message "PLUGIN CODE - $message" 198 # and message "PLUGIN CODE - $message"
198 nagios_exit( CRITICAL, $critical_error ) if $critical_error; 199 nagios_exit( CRITICAL, $critical_error ) if $critical_error;
199 nagios_exit( WARNING, $warning_error ) if $warning_error; 200 nagios_exit( WARNING, $warning_error ) if $warning_error;
@@ -223,7 +224,7 @@ Nagios::Plugin. It is intended for those who prefer a simpler
223functional interface, and who do not need the additional 224functional interface, and who do not need the additional
224functionality of Nagios::Plugin. 225functionality of Nagios::Plugin.
225 226
226=head2 Exports 227=head2 EXPORTS
227 228
228Nagios status code constants are exported by default: 229Nagios status code constants are exported by default:
229 230
@@ -245,13 +246,13 @@ The following variables are exported only on request:
245 %STATUS_TEXT 246 %STATUS_TEXT
246 247
247 248
248=head2 Functions 249=head2 FUNCTIONS
249 250
250The following functions are supported: 251The following functions are supported:
251 252
252=over 4 253=over 4
253 254
254=item nagios_exit( CODE, $message ) 255=item nagios_exit( <CODE>, $message )
255 256
256Exit with return code CODE, and a standard nagios message of the 257Exit with return code CODE, and a standard nagios message of the
257form "PLUGIN CODE - $message". 258form "PLUGIN CODE - $message".