X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fwrite_http.c;h=9d8f30c2a6a2ed2324924d9c74500d8f09e950d8;hb=789b73ad5ce9a1f3d3b255be593813fbe814f9f1;hp=7a1fbd04fd823bca1fae6609d28f6ad65cbeab64;hpb=061c3c091d725d58dfe1e7525a8d72a1ea389a8a;p=collectd.git diff --git a/src/write_http.c b/src/write_http.c index 7a1fbd04..9d8f30c2 100644 --- a/src/write_http.c +++ b/src/write_http.c @@ -27,7 +27,6 @@ #include "plugin.h" #include "common.h" #include "utils_cache.h" -#include "utils_parse_option.h" #include "utils_format_json.h" #if HAVE_PTHREAD_H @@ -45,8 +44,9 @@ */ struct wh_callback_s { - char *location; + char *name; + char *location; char *user; char *pass; char *credentials; @@ -135,6 +135,8 @@ static int wh_callback_init (wh_callback_t *cb) /* {{{ */ curl_easy_setopt (cb->curl, CURLOPT_ERRORBUFFER, cb->curl_errbuf); curl_easy_setopt (cb->curl, CURLOPT_URL, cb->location); + curl_easy_setopt (cb->curl, CURLOPT_FOLLOWLOCATION, 1L); + curl_easy_setopt (cb->curl, CURLOPT_MAXREDIRS, 50L); if (cb->user != NULL) { @@ -290,6 +292,7 @@ static void wh_callback_free (void *data) /* {{{ */ curl_easy_cleanup (cb->curl); cb->curl = NULL; } + sfree (cb->name); sfree (cb->location); sfree (cb->user); sfree (cb->pass); @@ -492,11 +495,12 @@ static int config_set_format (wh_callback_t *cb, /* {{{ */ return (0); } /* }}} int config_set_format */ -static int wh_config_url (oconfig_item_t *ci) /* {{{ */ +static int wh_config_node (oconfig_item_t *ci) /* {{{ */ { wh_callback_t *cb; int buffer_size = 0; user_data_t user_data; + char callback_name[DATA_MAX_NAME_LEN]; int i; cb = malloc (sizeof (*cb)); @@ -513,15 +517,19 @@ static int wh_config_url (oconfig_item_t *ci) /* {{{ */ pthread_mutex_init (&cb->send_lock, /* attr = */ NULL); - cf_util_get_string (ci, &cb->location); - if (cb->location == NULL) - return (-1); + cf_util_get_string (ci, &cb->name); + + /* FIXME: Remove this legacy mode in version 6. */ + if (strcasecmp ("URL", ci->key) == 0) + cf_util_get_string (ci, &cb->location); for (i = 0; i < ci->children_num; i++) { oconfig_item_t *child = ci->children + i; - if (strcasecmp ("User", child->key) == 0) + if (strcasecmp ("URL", child->key) == 0) + cf_util_get_string (child, &cb->location); + else if (strcasecmp ("User", child->key) == 0) cf_util_get_string (child, &cb->user); else if (strcasecmp ("Password", child->key) == 0) cf_util_get_string (child, &cb->pass); @@ -580,6 +588,14 @@ static int wh_config_url (oconfig_item_t *ci) /* {{{ */ } } + if (cb->location == NULL) + { + ERROR ("write_http plugin: no URL defined for instance '%s'", + cb->name); + wh_callback_free (cb); + return (-1); + } + /* Determine send_buffer_size. */ cb->send_buffer_size = WRITE_HTTP_DEFAULT_BUFFER_SIZE; if (buffer_size >= 1024) @@ -599,19 +615,21 @@ static int wh_config_url (oconfig_item_t *ci) /* {{{ */ /* Nulls the buffer and sets ..._free and ..._fill. */ wh_reset_buffer (cb); - DEBUG ("write_http: Registering write callback with URL %s", - cb->location); + ssnprintf (callback_name, sizeof (callback_name), "write_http/%s", + cb->name); + DEBUG ("write_http: Registering write callback '%s' with URL '%s'", + callback_name, cb->location); memset (&user_data, 0, sizeof (user_data)); user_data.data = cb; user_data.free_func = NULL; - plugin_register_flush ("write_http", wh_flush, &user_data); + plugin_register_flush (callback_name, wh_flush, &user_data); user_data.free_func = wh_callback_free; - plugin_register_write ("write_http", wh_write, &user_data); + plugin_register_write (callback_name, wh_write, &user_data); return (0); -} /* }}} int wh_config_url */ +} /* }}} int wh_config_node */ static int wh_config (oconfig_item_t *ci) /* {{{ */ { @@ -621,8 +639,14 @@ static int wh_config (oconfig_item_t *ci) /* {{{ */ { oconfig_item_t *child = ci->children + i; - if (strcasecmp ("URL", child->key) == 0) - wh_config_url (child); + if (strcasecmp ("Node", child->key) == 0) + wh_config_node (child); + /* FIXME: Remove this legacy mode in version 6. */ + else if (strcasecmp ("URL", child->key) == 0) { + WARNING ("write_http plugin: Legacy block found. " + "Please use instead."); + wh_config_node (child); + } else { ERROR ("write_http plugin: Invalid configuration "