aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGravatar Thomas Guyot-Sionnest <dermoth@aei.ca> 2009-03-16 03:06:33 -0400
committerGravatar Thomas Guyot-Sionnest <dermoth@aei.ca> 2009-03-16 03:06:33 -0400
commit6b8502bee6f426eb7c3239c346c909c948bc3e77 (patch)
tree07fee137b5ff8d0f1f5e0aafffa0fc9a93d1c3e8 /plugins
parente2aec83e61487916d32ac98bd4c3171cd6899efd (diff)
downloadmonitoring-plugins-6b8502bee6f426eb7c3239c346c909c948bc3e77.tar.gz
check_http fixes:
- Fix broken printf on 500 errors - Add bytes to normal output (accidentally removed in 0d78171)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/check_http.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c
index e140be01..248c0f94 100644
--- a/plugins/check_http.c
+++ b/plugins/check_http.c
@@ -975,7 +975,7 @@ check_http (void)
}
/* server errors result in a critical state */
else if (http_status >= 500) {
- asprintf (&msg, _("%s - "), msg, status_line);
+ asprintf (&msg, _("%s - "), status_line);
result = STATE_CRITICAL;
}
/* client errors result in a warning state */
@@ -1059,8 +1059,8 @@ check_http (void)
/* check elapsed time */
asprintf (&msg,
- _("%s - %.3f second response time %s|%s %s"),
- msg, elapsed_time,
+ _("%s - %d bytes in %.3f second response time %s|%s %s"),
+ msg, page_len, elapsed_time,
(display_html ? "</A>" : ""),
perfd_time (elapsed_time), perfd_size (page_len));