X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=plugins%2Fcheck_ping.c;h=45108afb8cbe7b446ff602bd450895591d66c6ab;hb=25d1ee331dbe4977a4a1a756c67f32bd51d9b070;hp=065a14c7e5c1f614ad4520bc70df081dc8b2142d;hpb=cf0dee616af1f417daa76e746dfaa50947009fac;p=nagiosplug.git diff --git a/plugins/check_ping.c b/plugins/check_ping.c index 065a14c..45108af 100644 --- a/plugins/check_ping.c +++ b/plugins/check_ping.c @@ -1,42 +1,35 @@ -/****************************************************************************** -* +/***************************************************************************** +* * Nagios check_ping plugin -* +* * License: GPL -* Copyright (c) 2000-2006 nagios-plugins team -* -* Last Modified: $Date$ -* +* Copyright (c) 2000-2007 Nagios Plugins Development Team +* * Description: -* +* * This file contains the check_ping plugin -* -* Use the ping program to check connection statistics for a remote host. -* -* -* License Information: -* -* This program is free software; you can redistribute it and/or modify +* +* Use the ping program to check connection statistics for a remote host. +* +* +* This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by -* the Free Software Foundation; either version 2 of the License, or +* the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. -* +* * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. -* +* * You should have received a copy of the GNU General Public License -* along with this program; if not, write to the Free Software -* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - - $Id$ - -******************************************************************************/ +* along with this program. If not, see . +* +* +*****************************************************************************/ const char *progname = "check_ping"; -const char *revision = "$Revision$"; -const char *copyright = "2000-2006"; +const char *copyright = "2000-2007"; const char *email = "nagiosplug-devel@lists.sourceforge.net"; #include "common.h" @@ -95,6 +88,9 @@ main (int argc, char **argv) addresses = malloc (sizeof(char*) * max_addr); addresses[0] = NULL; + /* Parse extra opts if any */ + argv=np_extra_opts (&argc, argv, progname); + if (process_arguments (argc, argv) == ERROR) usage4 (_("Could not parse arguments")); @@ -112,7 +108,7 @@ main (int argc, char **argv) #endif for (i = 0 ; i < n_addresses ; i++) { - + #ifdef PING6_COMMAND if (address_family != AF_INET && is_inet6_addr(addresses[i])) rawcmd = strdup(PING6_COMMAND); @@ -150,8 +146,8 @@ main (int argc, char **argv) else if (pl >= wpl || rta >= wrta) this_result = STATE_WARNING; else if (pl >= 0 && rta >= 0) - this_result = max_state (STATE_OK, this_result); - + this_result = max_state (STATE_OK, this_result); + if (n_addresses > 1 && this_result != STATE_UNKNOWN) die (STATE_OK, "%s is alive\n", addresses[i]); @@ -165,7 +161,16 @@ main (int argc, char **argv) state_text (this_result), warn_text, pl, rta); if (display_html == TRUE) printf (""); - printf ("\n"); + + /* Print performance data */ + printf("|%s", fperfdata ("rta", (double) rta, "ms", + wrta>0?TRUE:FALSE, wrta, + crta>0?TRUE:FALSE, crta, + TRUE, 0, FALSE, 0)); + printf(" %s\n", perfdata ("pl", (long) pl, "%", + wpl>0?TRUE:FALSE, wpl, + cpl>0?TRUE:FALSE, cpl, + TRUE, 0, FALSE, 0)); if (verbose >= 2) printf ("%f:%d%% %f:%d%%\n", wrta, wpl, crta, cpl); @@ -222,7 +227,7 @@ process_arguments (int argc, char **argv) exit (STATE_OK); break; case 'V': /* version */ - print_revision (progname, revision); + print_revision (progname, NP_VERSION); exit (STATE_OK); break; case 't': /* timeout period */ @@ -361,7 +366,7 @@ get_threshold (char *arg, float *trta, int *tpl) return OK; else if (strpbrk (arg, ",:") && strstr (arg, "%") && sscanf (arg, "%f%*[:,]%d%%", trta, tpl) == 2) return OK; - else if (strstr (arg, "%") && sscanf (arg, "%d%%", tpl) == 1) + else if (strstr (arg, "%") && sscanf (arg, "%d%%", tpl) == 1) return OK; usage2 (_("%s: Warning threshold must be integer or percentage!\n\n"), arg); @@ -546,7 +551,7 @@ error_scan (char buf[MAX_INPUT_BUFFER], const char *addr) void print_help (void) { - print_revision (progname, revision); + print_revision (progname, NP_VERSION); printf ("Copyright (c) 1999 Ethan Galstad \n"); printf (COPYRIGHT, copyright, email); @@ -557,9 +562,10 @@ print_help (void) print_usage (); - printf (_(UT_HELP_VRSN)); + printf (UT_HELP_VRSN); + printf (UT_EXTRA_OPTS); - printf (_(UT_IPv46)); + printf (UT_IPv46); printf (" %s\n", "-H, --hostname=HOST"); printf (" %s\n", _("host to ping")); @@ -573,22 +579,26 @@ print_help (void) printf (" %s\n", "-L, --link"); printf (" %s\n", _("show HTML in the plugin output (obsoleted by urlize)")); - printf (_(UT_TIMEOUT), DEFAULT_SOCKET_TIMEOUT); + printf (UT_TIMEOUT, DEFAULT_SOCKET_TIMEOUT); + printf ("\n"); printf ("%s\n", _("THRESHOLD is ,% where is the round trip average travel")); printf ("%s\n", _("time (ms) which triggers a WARNING or CRITICAL state, and is the")); printf ("%s\n", _("percentage of packet loss to trigger an alarm state.")); - printf ("\n\n"); - + printf ("\n"); printf ("%s\n", _("This plugin uses the ping command to probe the specified host for packet loss")); printf ("%s\n", _("(percentage) and round trip average (milliseconds). It can produce HTML output")); printf ("%s\n", _("linking to a traceroute CGI contributed by Ian Cass. The CGI can be found in")); printf ("%s\n", _("the contrib area of the downloads section at http://www.nagios.org/")); - printf ("\n\n"); +#ifdef NP_EXTRA_OPTS + printf ("\n"); + printf ("%s\n", _("Notes:")); + printf (UT_EXTRA_OPTS_NOTES); +#endif - printf (_(UT_SUPPORT)); + printf (UT_SUPPORT); } void