summaryrefslogtreecommitdiffstats
path: root/plugins/check_load.c
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2008-05-07 10:02:42 (GMT)
committerThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2008-05-07 10:02:42 (GMT)
commit44f8455b2cf248c6f50c35bfc3510d2946084c5b (patch)
tree26b696c5d61872f1d41466be9fcc650c22d75aeb /plugins/check_load.c
parent4d157889e3018119e07bdcc7f48afde1422f7396 (diff)
downloadmonitoring-plugins-44f8455b2cf248c6f50c35bfc3510d2946084c5b.tar.gz
Added support for --extra-opts in all C plugins (disabled by default, see configure --help)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1991 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_load.c')
-rw-r--r--plugins/check_load.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/plugins/check_load.c b/plugins/check_load.c
index f4faa31..5ff9a8c 100644
--- a/plugins/check_load.c
+++ b/plugins/check_load.c
@@ -119,6 +119,9 @@ main (int argc, char **argv)
119 textdomain (PACKAGE); 119 textdomain (PACKAGE);
120 setlocale(LC_NUMERIC, "POSIX"); 120 setlocale(LC_NUMERIC, "POSIX");
121 121
122 /* Parse extra opts if any */
123 argv = np_extra_opts (&argc, argv, progname);
124
122 if (process_arguments (argc, argv) == ERROR) 125 if (process_arguments (argc, argv) == ERROR)
123 usage4 (_("Could not parse arguments")); 126 usage4 (_("Could not parse arguments"));
124 127
@@ -307,6 +310,7 @@ print_help (void)
307 print_usage (); 310 print_usage ();
308 311
309 printf (_(UT_HELP_VRSN)); 312 printf (_(UT_HELP_VRSN));
313 printf (_(UT_EXTRA_OPTS));
310 314
311 printf (" %s\n", "-w, --warning=WLOAD1,WLOAD5,WLOAD15"); 315 printf (" %s\n", "-w, --warning=WLOAD1,WLOAD5,WLOAD15");
312 printf (" %s\n", _("Exit with WARNING status if load average exceeds WLOADn")); 316 printf (" %s\n", _("Exit with WARNING status if load average exceeds WLOADn"));
@@ -316,6 +320,12 @@ print_help (void)
316 printf (" %s\n", "-r, --percpu"); 320 printf (" %s\n", "-r, --percpu");
317 printf (" %s\n", _("Divide the load averages by the number of CPUs (when possible)")); 321 printf (" %s\n", _("Divide the load averages by the number of CPUs (when possible)"));
318 322
323#ifdef NP_EXTRA_OPTS
324 printf ("\n");
325 printf ("%s\n", _("Notes:"));
326 printf (_(UT_EXTRA_OPTS_NOTES));
327#endif
328
319 printf (_(UT_SUPPORT)); 329 printf (_(UT_SUPPORT));
320} 330}
321 331