summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0b83faf)
raw | patch | inline | side by side (parent: 0b83faf)
author | loginator17 <loginator17@users.noreply.github.com> | |
Fri, 10 Oct 2014 17:30:47 +0000 (18:30 +0100) | ||
committer | loginator17 <loginator17@users.noreply.github.com> | |
Fri, 10 Oct 2014 17:30:47 +0000 (18:30 +0100) |
Adding PostTimeoutSec to set max timeout on http post
src/write_http.c | patch | blob | history |
diff --git a/src/write_http.c b/src/write_http.c
index 1ab94382aa8de34f22d5d1fcdd1ef52fe2037745..b36a6978d7027a8acaf688e8b4cea98607b8662b 100644 (file)
--- a/src/write_http.c
+++ b/src/write_http.c
_Bool abort_on_slow;
int low_limit_bytes;
time_t interval;
+ int post_timeout;
#define WH_FORMAT_COMMAND 0
#define WH_FORMAT_JSON 1
curl_easy_setopt(cb->curl, CURLOPT_LOW_SPEED_LIMIT, (cb->low_limit_bytes?cb->low_limit_bytes:WH_DEFAULT_LOW_LIMIT_BYTES_PER_SEC));
curl_easy_setopt(cb->curl, CURLOPT_LOW_SPEED_TIME, cb->interval);
}
+ if(cb->post_timeout >0)
+ {
+ curl_easy_setopt(cb->curl, CURLOPT_TIMEOUT, cb->post_timeout);
+ }
curl_easy_setopt (cb->curl, CURLOPT_NOSIGNAL, 1L);
curl_easy_setopt (cb->curl, CURLOPT_USERAGENT, COLLECTD_USERAGENT);
cb->format = WH_FORMAT_COMMAND;
cb->sslversion = CURL_SSLVERSION_DEFAULT;
cb->low_limit_bytes = WH_DEFAULT_LOW_LIMIT_BYTES_PER_SEC;
+ cb->post_timeout = 0;
pthread_mutex_init (&cb->send_lock, /* attr = */ NULL);
cf_util_get_boolean (child,&cb->abort_on_slow);
else if (strcasecmp ("LowLimitBytesPerSec", child->key) == 0)
cf_util_get_int (child, &cb->low_limit_bytes);
+ else if (strcasecmp ("PostTimeoutSec", child->key) == 0)
+ cf_util_get_int (child, &cb->post_timeout);
else
{
ERROR ("write_http plugin: Invalid configuration "