X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fwrite_http.c;h=ed596bbf56b9e9ee88becd425126951a4591fb91;hb=6d13532642c934667697842e4ff021e070ddf34d;hp=0e1bc734a1d4341b64cfc59274c785d849422cec;hpb=5b1d67d04e490d48dd72dbb9f84d1a74bfb9dcc1;p=collectd.git diff --git a/src/write_http.c b/src/write_http.c index 0e1bc734..ed596bbf 100644 --- a/src/write_http.c +++ b/src/write_http.c @@ -39,7 +39,6 @@ # define WRITE_HTTP_DEFAULT_BUFFER_SIZE 4096 #endif -#define WH_DEFAULT_LOW_LIMIT_BYTES_PER_SEC 100 /* * Private variables */ @@ -60,10 +59,9 @@ struct wh_callback_s char *clientkeypass; long sslversion; _Bool store_rates; - _Bool abort_on_slow; - int low_limit_bytes; - time_t interval; - int post_timeout; + int low_speed_limit; + time_t low_speed_time; + int timeout; #define WH_FORMAT_COMMAND 0 #define WH_FORMAT_JSON 1 @@ -126,15 +124,18 @@ static int wh_callback_init (wh_callback_t *cb) /* {{{ */ return (-1); } - if (cb->abort_on_slow && cb->interval > 0) + if (cb->low_speed_limit > 0 && cb->low_speed_time > 0) { 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); + (long) (cb->low_speed_limit * cb->low_speed_time)); + curl_easy_setopt (cb->curl, CURLOPT_LOW_SPEED_TIME, + (long) cb->low_speed_time); } - if (cb->post_timeout > 0) - curl_easy_setopt (cb->curl, CURLOPT_TIMEOUT, cb->post_timeout); +#ifdef HAVE_CURLOPT_TIMEOUT_MS + if (cb->timeout > 0) + curl_easy_setopt (cb->curl, CURLOPT_TIMEOUT_MS, (long) cb->timeout); +#endif curl_easy_setopt (cb->curl, CURLOPT_NOSIGNAL, 1L); curl_easy_setopt (cb->curl, CURLOPT_USERAGENT, COLLECTD_USERAGENT); @@ -376,7 +377,6 @@ static int wh_write_command (const data_set_t *ds, const value_list_t *vl, /* {{ if (cb->curl == NULL) { - cb->interval = CDTIME_T_TO_TIME_T(vl->interval); status = wh_callback_init (cb); if (status != 0) { @@ -425,8 +425,6 @@ static int wh_write_json (const data_set_t *ds, const value_list_t *vl, /* {{{ * if (cb->curl == NULL) { - cb->interval = CDTIME_T_TO_TIME_T(vl->interval); - status = wh_callback_init (cb); if (status != 0) { @@ -538,8 +536,8 @@ static int wh_config_node (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->post_timeout = 0; + cb->low_speed_limit = 0; + cb->timeout = 0; pthread_mutex_init (&cb->send_lock, /* attr = */ NULL); @@ -608,11 +606,9 @@ static int wh_config_node (oconfig_item_t *ci) /* {{{ */ else if (strcasecmp ("BufferSize", child->key) == 0) cf_util_get_int (child, &buffer_size); 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); + cf_util_get_int (child, &cb->low_speed_limit); + else if (strcasecmp ("Timeout", child->key) == 0) + cf_util_get_int (child, &cb->timeout); else { ERROR ("write_http plugin: Invalid configuration " @@ -628,12 +624,8 @@ static int wh_config_node (oconfig_item_t *ci) /* {{{ */ return (-1); } - if (cb->abort_on_slow) - cb->interval = CDTIME_T_TO_TIME_T(plugin_get_interval()); - - if (cb->post_timeout == 0) - //setting default timeout to plugin interval. - cb->post_timeout = CDTIME_T_TO_TIME_T(plugin_get_interval()); + if (cb->low_speed_limit > 0) + cb->low_speed_time = CDTIME_T_TO_TIME_T(plugin_get_interval()); /* Determine send_buffer_size. */ cb->send_buffer_size = WRITE_HTTP_DEFAULT_BUFFER_SIZE;