diff options
author | Barak Shohat <barak@bazzisoft.com> | 2021-04-06 13:35:20 (GMT) |
---|---|---|
committer | Barak Shohat <barak@bazzisoft.com> | 2021-04-07 09:36:55 (GMT) |
commit | 2482950e267a752b37d696c10ea091dc62d6d8a7 (patch) | |
tree | 4d83308070e360cad99a21537337a9d8f01ae14e /plugins/check_curl.c | |
parent | 57b4dc0f2307cd49bedeed01ee56bc6077d428f5 (diff) | |
download | monitoring-plugins-2482950e267a752b37d696c10ea091dc62d6d8a7.tar.gz |
Updated check_curl.c to display a specific human-readable error message where possiblerefs/pull/1668/head
Diffstat (limited to 'plugins/check_curl.c')
-rw-r--r-- | plugins/check_curl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_curl.c b/plugins/check_curl.c index 8f274c2..8cb2ff4 100644 --- a/plugins/check_curl.c +++ b/plugins/check_curl.c | |||
@@ -313,8 +313,8 @@ static char *string_statuscode (int major, int minor) | |||
313 | /* assuming here HTTP/N with N>=4 */ | 313 | /* assuming here HTTP/N with N>=4 */ |
314 | snprintf (buf, sizeof (buf), "HTTP/%d", major); | 314 | snprintf (buf, sizeof (buf), "HTTP/%d", major); |
315 | break; | 315 | break; |
316 | } | 316 | } |
317 | 317 | ||
318 | return buf; | 318 | return buf; |
319 | } | 319 | } |
320 | 320 | ||
@@ -662,7 +662,7 @@ check_http (void) | |||
662 | /* Curl errors, result in critical Nagios state */ | 662 | /* Curl errors, result in critical Nagios state */ |
663 | if (res != CURLE_OK) { | 663 | if (res != CURLE_OK) { |
664 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("Invalid HTTP response received from host on port %d: cURL returned %d - %s"), | 664 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("Invalid HTTP response received from host on port %d: cURL returned %d - %s"), |
665 | server_port, res, curl_easy_strerror(res)); | 665 | server_port, res, errbuf[0] ? errbuf : curl_easy_strerror(res)); |
666 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | 666 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); |
667 | } | 667 | } |
668 | 668 | ||