summaryrefslogtreecommitdiffstats
path: root/plugins/check_dns.c
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2006-03-22 16:45:57 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2006-03-22 16:45:57 (GMT)
commit63271bf65d7f6da74e832e16217bac5778d21d6b (patch)
tree146b3a3462f653691c4311725a03e0c7e0ade56f /plugins/check_dns.c
parent7de561c9122315c7974e0b978de0c74bf3b56973 (diff)
downloadmonitoring-plugins-63271bf65d7f6da74e832e16217bac5778d21d6b.tar.gz
Added warning and critical response times (John Rouillard - 1343159)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1346 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_dns.c')
-rw-r--r--plugins/check_dns.c30
1 files changed, 27 insertions, 3 deletions
diff --git a/plugins/check_dns.c b/plugins/check_dns.c
index 2a3e376..3b94a7a 100644
--- a/plugins/check_dns.c
+++ b/plugins/check_dns.c
@@ -45,6 +45,7 @@ int verbose = FALSE;
45char expected_address[ADDRESS_LENGTH] = ""; 45char expected_address[ADDRESS_LENGTH] = "";
46int match_expected_address = FALSE; 46int match_expected_address = FALSE;
47int expect_authority = FALSE; 47int expect_authority = FALSE;
48thresholds *time_thresholds = NULL;
48 49
49int 50int
50main (int argc, char **argv) 51main (int argc, char **argv)
@@ -183,7 +184,14 @@ main (int argc, char **argv)
183 else 184 else
184 multi_address = TRUE; 185 multi_address = TRUE;
185 186
186 printf ("DNS %s: ", _("OK")); 187 result = get_status(elapsed_time, time_thresholds);
188 if (result == STATE_OK) {
189 printf ("DNS %s: ", _("OK"));
190 } else if (result == STATE_WARNING) {
191 printf ("DNS %s: ", _("WARNING"));
192 } else if (result == STATE_CRITICAL) {
193 printf ("DNS %s: ", _("CRITICAL"));
194 }
187 printf (ngettext("%.3f second response time", "%.3f seconds response time", elapsed_time), elapsed_time); 195 printf (ngettext("%.3f second response time", "%.3f seconds response time", elapsed_time), elapsed_time);
188 printf (_(". %s returns %s"), query_address, address); 196 printf (_(". %s returns %s"), query_address, address);
189 printf ("|%s\n", fperfdata ("time", elapsed_time, "s", FALSE, 0, FALSE, 0, TRUE, 0, FALSE, 0)); 197 printf ("|%s\n", fperfdata ("time", elapsed_time, "s", FALSE, 0, FALSE, 0, TRUE, 0, FALSE, 0));
@@ -266,6 +274,8 @@ int
266process_arguments (int argc, char **argv) 274process_arguments (int argc, char **argv)
267{ 275{
268 int c; 276 int c;
277 char *warning = NULL;
278 char *critical = NULL;
269 279
270 int opt_index = 0; 280 int opt_index = 0;
271 static struct option long_opts[] = { 281 static struct option long_opts[] = {
@@ -278,6 +288,8 @@ process_arguments (int argc, char **argv)
278 {"reverse-server", required_argument, 0, 'r'}, 288 {"reverse-server", required_argument, 0, 'r'},
279 {"expected-address", required_argument, 0, 'a'}, 289 {"expected-address", required_argument, 0, 'a'},
280 {"expect-authority", no_argument, 0, 'A'}, 290 {"expect-authority", no_argument, 0, 'A'},
291 {"warning", no_argument, 0, 'w'},
292 {"critical", no_argument, 0, 'c'},
281 {0, 0, 0, 0} 293 {0, 0, 0, 0}
282 }; 294 };
283 295
@@ -289,7 +301,7 @@ process_arguments (int argc, char **argv)
289 strcpy (argv[c], "-t"); 301 strcpy (argv[c], "-t");
290 302
291 while (1) { 303 while (1) {
292 c = getopt_long (argc, argv, "hVvAt:H:s:r:a:", long_opts, &opt_index); 304 c = getopt_long (argc, argv, "hVvAt:H:s:r:a:w:c:", long_opts, &opt_index);
293 305
294 if (c == -1 || c == EOF) 306 if (c == -1 || c == EOF)
295 break; 307 break;
@@ -336,6 +348,12 @@ process_arguments (int argc, char **argv)
336 case 'A': /* expect authority */ 348 case 'A': /* expect authority */
337 expect_authority = TRUE; 349 expect_authority = TRUE;
338 break; 350 break;
351 case 'w':
352 warning = optarg;
353 break;
354 case 'c':
355 critical = optarg;
356 break;
339 default: /* args not parsable */ 357 default: /* args not parsable */
340 usage_va(_("Unknown argument - %s"), optarg); 358 usage_va(_("Unknown argument - %s"), optarg);
341 } 359 }
@@ -356,6 +374,8 @@ process_arguments (int argc, char **argv)
356 strcpy (dns_server, argv[c++]); 374 strcpy (dns_server, argv[c++]);
357 } 375 }
358 376
377 set_thresholds(&time_thresholds, warning, critical);
378
359 return validate_arguments (); 379 return validate_arguments ();
360} 380}
361 381
@@ -395,6 +415,10 @@ print_help (void)
395 printf (" %s\n", _("Optional IP-ADDRESS you expect the DNS server to return. HOST must end with .")); 415 printf (" %s\n", _("Optional IP-ADDRESS you expect the DNS server to return. HOST must end with ."));
396 printf (" -A, --expect-authority\n"); 416 printf (" -A, --expect-authority\n");
397 printf (" %s\n", _("Optionally expect the DNS server to be authoritative for the lookup")); 417 printf (" %s\n", _("Optionally expect the DNS server to be authoritative for the lookup"));
418 printf (" -w, --warning=seconds\n");
419 printf (" %s\n", _("Return warning if elapsed time exceeds value. Default off"));
420 printf (" -c, --critical=seconds\n");
421 printf (" %s\n", _("Return critical if elapsed time exceeds value. Default off"));
398 422
399 printf (_(UT_TIMEOUT), DEFAULT_SOCKET_TIMEOUT); 423 printf (_(UT_TIMEOUT), DEFAULT_SOCKET_TIMEOUT);
400 printf (_(UT_SUPPORT)); 424 printf (_(UT_SUPPORT));
@@ -406,5 +430,5 @@ print_usage (void)
406{ 430{
407 printf (_("Usage:")); 431 printf (_("Usage:"));
408 432
409 printf ("%s -H host [-s server] [-a expected-address] [-A] [-t timeout]\n", progname); 433 printf ("%s -H host [-s server] [-a expected-address] [-A] [-t timeout] [-w warn] [-c crit]\n", progname);
410} 434}