summaryrefslogtreecommitdiffstats
path: root/plugins/check_dns.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/check_dns.c')
-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 a2a92f4..31a953d 100644
--- a/plugins/check_dns.c
+++ b/plugins/check_dns.c
@@ -242,14 +242,23 @@ main (int argc, char **argv)
242 } 242 }
243 printf (ngettext("%.3f second response time", "%.3f seconds response time", elapsed_time), elapsed_time); 243 printf (ngettext("%.3f second response time", "%.3f seconds response time", elapsed_time), elapsed_time);
244 printf (_(". %s returns %s"), query_address, address); 244 printf (_(". %s returns %s"), query_address, address);
245 if ((time_thresholds->warning == NULL) || (time_thresholds->critical == NULL)) { 245 if ((time_thresholds->warning != NULL) && (time_thresholds->critical != NULL)) {
246 printf ("|%s\n", fperfdata ("time", elapsed_time, "s", FALSE, 0, FALSE, 0, TRUE, 0, FALSE, 0));
247 } else {
248 printf ("|%s\n", fperfdata ("time", elapsed_time, "s", 246 printf ("|%s\n", fperfdata ("time", elapsed_time, "s",
249 TRUE, time_thresholds->warning->end, 247 TRUE, time_thresholds->warning->end,
250 TRUE, time_thresholds->critical->end, 248 TRUE, time_thresholds->critical->end,
251 TRUE, 0, FALSE, 0)); 249 TRUE, 0, FALSE, 0));
252 } 250 } else if ((time_thresholds->warning == NULL) && (time_thresholds->critical != NULL)) {
251 printf ("|%s\n", fperfdata ("time", elapsed_time, "s",
252 FALSE, 0,
253 TRUE, time_thresholds->critical->end,
254 TRUE, 0, FALSE, 0));
255 } else if ((time_thresholds->warning != NULL) && (time_thresholds->critical == NULL)) {
256 printf ("|%s\n", fperfdata ("time", elapsed_time, "s",
257 TRUE, time_thresholds->warning->end,
258 FALSE, 0,
259 TRUE, 0, FALSE, 0));
260 } else
261 printf ("|%s\n", fperfdata ("time", elapsed_time, "s", FALSE, 0, FALSE, 0, TRUE, 0, FALSE, 0));
253 } 262 }
254 else if (result == STATE_WARNING) 263 else if (result == STATE_WARNING)
255 printf (_("DNS WARNING - %s\n"), 264 printf (_("DNS WARNING - %s\n"),