diff options
-rw-r--r-- | plugins/check_http.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c index e140be0..248c0f9 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c | |||
@@ -975,7 +975,7 @@ check_http (void) | |||
975 | } | 975 | } |
976 | /* server errors result in a critical state */ | 976 | /* server errors result in a critical state */ |
977 | else if (http_status >= 500) { | 977 | else if (http_status >= 500) { |
978 | asprintf (&msg, _("%s - "), msg, status_line); | 978 | asprintf (&msg, _("%s - "), status_line); |
979 | result = STATE_CRITICAL; | 979 | result = STATE_CRITICAL; |
980 | } | 980 | } |
981 | /* client errors result in a warning state */ | 981 | /* client errors result in a warning state */ |
@@ -1059,8 +1059,8 @@ check_http (void) | |||
1059 | 1059 | ||
1060 | /* check elapsed time */ | 1060 | /* check elapsed time */ |
1061 | asprintf (&msg, | 1061 | asprintf (&msg, |
1062 | _("%s - %.3f second response time %s|%s %s"), | 1062 | _("%s - %d bytes in %.3f second response time %s|%s %s"), |
1063 | msg, elapsed_time, | 1063 | msg, page_len, elapsed_time, |
1064 | (display_html ? "</A>" : ""), | 1064 | (display_html ? "</A>" : ""), |
1065 | perfd_time (elapsed_time), perfd_size (page_len)); | 1065 | perfd_time (elapsed_time), perfd_size (page_len)); |
1066 | 1066 | ||