aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGravatar abrist <abrist@nagios.com> 2014-02-26 12:08:59 -0500
committerGravatar Sven Nierlein <sven@nierlein.de> 2014-06-28 22:01:16 +0200
commite49973493c4ede24f034dc8e54d988404795ae17 (patch)
treeddc79d115d602b9dc70e839c72504a727c0b893e /plugins
parent79ba1f90dbb9f29871f09bfd6a95cba2ed86ee5d (diff)
downloadmonitoring-plugins-e49973493c4ede24f034dc8e54d988404795ae17.tar.gz
check_dns.c Added a bit more logic to thresholds
Added two if elses to cover when only one threshold is set.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/check_dns.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/plugins/check_dns.c b/plugins/check_dns.c
index a2a92f41..31a953d7 100644
--- a/plugins/check_dns.c
+++ b/plugins/check_dns.c
@@ -242,14 +242,23 @@ main (int argc, char **argv)
}
printf (ngettext("%.3f second response time", "%.3f seconds response time", elapsed_time), elapsed_time);
printf (_(". %s returns %s"), query_address, address);
- if ((time_thresholds->warning == NULL) || (time_thresholds->critical == NULL)) {
- printf ("|%s\n", fperfdata ("time", elapsed_time, "s", FALSE, 0, FALSE, 0, TRUE, 0, FALSE, 0));
- } else {
+ if ((time_thresholds->warning != NULL) && (time_thresholds->critical != NULL)) {
printf ("|%s\n", fperfdata ("time", elapsed_time, "s",
TRUE, time_thresholds->warning->end,
TRUE, time_thresholds->critical->end,
TRUE, 0, FALSE, 0));
- }
+ } else if ((time_thresholds->warning == NULL) && (time_thresholds->critical != NULL)) {
+ printf ("|%s\n", fperfdata ("time", elapsed_time, "s",
+ FALSE, 0,
+ TRUE, time_thresholds->critical->end,
+ TRUE, 0, FALSE, 0));
+ } else if ((time_thresholds->warning != NULL) && (time_thresholds->critical == NULL)) {
+ printf ("|%s\n", fperfdata ("time", elapsed_time, "s",
+ TRUE, time_thresholds->warning->end,
+ FALSE, 0,
+ TRUE, 0, FALSE, 0));
+ } else
+ printf ("|%s\n", fperfdata ("time", elapsed_time, "s", FALSE, 0, FALSE, 0, TRUE, 0, FALSE, 0));
}
else if (result == STATE_WARNING)
printf (_("DNS WARNING - %s\n"),