X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fwrite_http.c;h=b36a6978d7027a8acaf688e8b4cea98607b8662b;hb=214c709caed745ea0b844a94c1605c7063c26e50;hp=cd0f949ce1a502facd637000ce36d2ac560f85e5;hpb=a69e121086508eed03831e7d3616430f71888257;p=collectd.git diff --git a/src/write_http.c b/src/write_http.c index cd0f949c..b36a6978 100644 --- a/src/write_http.c +++ b/src/write_http.c @@ -58,10 +58,11 @@ struct wh_callback_s char *clientcert; char *clientkeypass; long sslversion; - _Bool store_rates; - _Bool abort_on_slow; - int low_limit_bytes; + _Bool store_rates; + _Bool abort_on_slow; + int low_limit_bytes; time_t interval; + int post_timeout; #define WH_FORMAT_COMMAND 0 #define WH_FORMAT_JSON 1 @@ -129,6 +130,10 @@ static int wh_callback_init (wh_callback_t *cb) /* {{{ */ 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); @@ -357,12 +362,11 @@ static int wh_write_command (const data_set_t *ds, const value_list_t *vl, /* {{ return (-1); } - cb->interval = CDTIME_T_TO_TIME_T(vl->interval); - pthread_mutex_lock (&cb->send_lock); if (cb->curl == NULL) { + cb->interval = CDTIME_T_TO_TIME_T(vl->interval); status = wh_callback_init (cb); if (status != 0) { @@ -407,12 +411,12 @@ static int wh_write_json (const data_set_t *ds, const value_list_t *vl, /* {{{ * { int status; - cb->interval = CDTIME_T_TO_TIME_T(vl->interval); - pthread_mutex_lock (&cb->send_lock); if (cb->curl == NULL) { + cb->interval = CDTIME_T_TO_TIME_T(vl->interval); + status = wh_callback_init (cb); if (status != 0) { @@ -523,7 +527,8 @@ static int wh_config_url (oconfig_item_t *ci) /* {{{ */ cb->verify_host = 1; cb->format = WH_FORMAT_COMMAND; cb->sslversion = CURL_SSLVERSION_DEFAULT; - cb->low_limit_bytes = WH_DEFAULT_LOW_LIMIT_BYTES_PER_SEC; + cb->low_limit_bytes = WH_DEFAULT_LOW_LIMIT_BYTES_PER_SEC; + cb->post_timeout = 0; pthread_mutex_init (&cb->send_lock, /* attr = */ NULL); @@ -587,10 +592,12 @@ static int wh_config_url (oconfig_item_t *ci) /* {{{ */ cf_util_get_boolean (child, &cb->store_rates); else if (strcasecmp ("BufferSize", child->key) == 0) cf_util_get_int (child, &buffer_size); - else if (strcasecmp ("LowSpeedLimit", child->key) == 0) + else if (strcasecmp ("LowSpeedLimit", child->key) == 0) 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 "