Code

Verbose should not have to exceed 3 as per developement guidelines
[nagiosplug.git] / plugins / check_fping.c
index 49615d13b9b0719350ea2ec18c29afc63377a634..5a0ab8cc08fb436ba17cd4a7ab02c4a899a0e953 100644 (file)
@@ -1,26 +1,40 @@
-/******************************************************************************
-
- 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
- (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$
-******************************************************************************/
+/*****************************************************************************
+* 
+* Nagios check_fping plugin
+* 
+* License: GPL
+* Copyright (c) 2000-2007 Nagios Plugins Development Team
+* 
+* Last Modified: $Date$
+* 
+* Description:
+* 
+* This file contains the check_disk plugin
+* 
+* This plugin will use the fping command to ping the specified host for a
+* fast check
+* 
+* 
+* 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 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, see <http://www.gnu.org/licenses/>.
+* 
+* $Id$
+* 
+*****************************************************************************/
 
 const char *progname = "check_fping";
 const char *revision = "$Revision$";
-const char *copyright = "2000-2004";
+const char *copyright = "2000-2007";
 const char *email = "nagiosplug-devel@lists.sourceforge.net";
 
 #include "common.h"
@@ -69,6 +83,9 @@ main (int argc, char **argv)
   bindtextdomain (PACKAGE, LOCALEDIR);
   textdomain (PACKAGE);
 
+  /* Parse extra opts if any */
+  argv=np_extra_opts (&argc, argv, progname);
+
   if (process_arguments (argc, argv) == ERROR)
     usage4 (_("Could not parse arguments"));
 
@@ -190,7 +207,7 @@ textscan (char *buf)
     die (status, _("FPING %s - %s (loss=%.0f%% )|%s\n"),
          state_text (status), server_name, loss ,
          perfdata ("loss", (long int)loss, "%", wpl_p, wpl, cpl_p, cpl, TRUE, 0, TRUE, 100));
-  
+
   }
   else {
     status = max_state (status, STATE_WARNING);
@@ -242,7 +259,7 @@ process_arguments (int argc, char **argv)
 
     switch (c) {
     case '?':                 /* print short usage statement if args not parsable */
-      usage2 (_("Unknown argument"), optarg);
+      usage5 ();
     case 'h':                 /* help */
       print_help ();
       exit (STATE_OK);
@@ -356,70 +373,39 @@ print_help (void)
   printf ("Copyright (c) 1999 Didi Rieder <adrieder@sbox.tu-graz.ac.at>\n");
   printf (COPYRIGHT, copyright, email);
 
-  printf (_("This plugin will use the fping command to ping the specified host for a fast check"));
-  
-  printf ("\n");
-  
-  printf (_("Note that it is necessary to set the suid flag on fping."));
+  printf ("%s\n", _("This plugin will use the fping command to ping the specified host for a fast check"));
+
+  printf ("%s\n", _("Note that it is necessary to set the suid flag on fping."));
 
   printf ("\n\n");
-  
+
   print_usage ();
 
   printf (_(UT_HELP_VRSN));
-
-  printf ("  -H, --hostname=HOST");
-  
-  printf (_("name or IP Address of host to ping (IP Address bypasses name lookup, reducing system load)"));
-  
-  printf ("\n");
-  
-  printf ("-w, --warning=THRESHOLD");
-  
-  printf ("\n");
-  
-  printf (_("warning threshold pair"));
-  
-  printf ("\n");
-
-  printf ("  -c, --critical=THRESHOLD");
-  
-  printf ("\n");
-
-  printf (_("critical threshold pair"));
-  
-  printf ("\n");
-
-  printf ("  -b, --bytes=INTEGER");
-  
-  printf (_("size of ICMP packet (default: %d)"),PACKET_SIZE);
-  
-  printf ("\n");
-
-  printf ("  -n, --number=INTEGER");
-  
-  printf ("\n");
-
-  printf (_("number of ICMP packets to send (default: %d)"),PACKET_COUNT);
-
-  printf ("\n");
-
+  printf (_(UT_EXTRA_OPTS));
+
+  printf (" %s\n", "-H, --hostname=HOST");
+  printf ("    %s\n", _("name or IP Address of host to ping (IP Address bypasses name lookup, reducing system load)"));
+  printf (" %s\n", "-w, --warning=THRESHOLD");
+  printf ("    %s\n", _("warning threshold pair"));
+  printf (" %s\n", "-c, --critical=THRESHOLD");
+  printf ("    %s\n", _("critical threshold pair"));
+  printf (" %s\n", "-b, --bytes=INTEGER");
+  printf ("    %s\n", _("size of ICMP packet (default: %d)"),PACKET_SIZE);
+  printf (" %s\n", "-n, --number=INTEGER");
+  printf ("    %s\n", _("number of ICMP packets to send (default: %d)"),PACKET_COUNT);
   printf (_(UT_VERBOSE));
-
   printf ("\n");
+  printf (" %s\n", _("THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time (ms)"));
+  printf (" %s\n", _("which triggers a WARNING or CRITICAL state, and <pl> is the percentage of"));
+  printf (" %s\n", _("packet loss to trigger an alarm state."));
 
-  printf (_("THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time (ms)"));
-  
+#ifdef NP_EXTRA_OPTS
   printf ("\n");
+  printf ("%s\n", _("Notes:"));
+  printf (_(UT_EXTRA_OPTS_NOTES));
+#endif
 
-  printf (_("which triggers a WARNING or CRITICAL state, and <pl> is the percentage of"));
-  
-  printf ("\n");
-
-  printf (_("packet loss to trigger an alarm state."));
-
-  printf ("\n");
-  
   printf (_(UT_SUPPORT));
 }
 
@@ -428,5 +414,5 @@ void
 print_usage (void)
 {
   printf (_("Usage:"));
-  printf (" %s <host_address>\n", progname);
+  printf (" %s <host_address> -w limit -c limit [-b size] [-n number]\n", progname);
 }