X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fwrite_http.c;h=95132cf92f7bcd8d541bd53aa38a34b72de28c9a;hb=361f0013d5a20fa0b229376ddc3804c6e00058c5;hp=c817749f0b0bd93cec839176972d63ceb8a7e490;hpb=e030096e4f5a0bbdd42635bfeb95e39d150cac72;p=collectd.git diff --git a/src/write_http.c b/src/write_http.c index c817749f..95132cf9 100644 --- a/src/write_http.c +++ b/src/write_http.c @@ -24,14 +24,11 @@ **/ #include "collectd.h" + #include "plugin.h" #include "common.h" -#include "utils_cache.h" #include "utils_format_json.h" - -#if HAVE_PTHREAD_H -# include -#endif +#include "utils_format_kairosdb.h" #include @@ -64,9 +61,12 @@ struct wh_callback_s time_t low_speed_time; int timeout; -#define WH_FORMAT_COMMAND 0 -#define WH_FORMAT_JSON 1 +#define WH_FORMAT_COMMAND 0 +#define WH_FORMAT_JSON 1 +#define WH_FORMAT_KAIROSDB 2 int format; + _Bool send_metrics; + _Bool send_notifications; CURL *curl; struct curl_slist *headers; @@ -97,12 +97,15 @@ static void wh_log_http_error (wh_callback_t *cb) static void wh_reset_buffer (wh_callback_t *cb) /* {{{ */ { + if ((cb == NULL) || (cb->send_buffer == NULL)) + return; + memset (cb->send_buffer, 0, cb->send_buffer_size); cb->send_buffer_free = cb->send_buffer_size; cb->send_buffer_fill = 0; cb->send_buffer_init_time = cdtime (); - if (cb->format == WH_FORMAT_JSON) + if (cb->format == WH_FORMAT_JSON || cb->format == WH_FORMAT_KAIROSDB) { format_json_initialize (cb->send_buffer, &cb->send_buffer_fill, @@ -110,11 +113,12 @@ static void wh_reset_buffer (wh_callback_t *cb) /* {{{ */ } } /* }}} wh_reset_buffer */ -static int wh_send_buffer (wh_callback_t *cb) /* {{{ */ +/* must hold cb->send_lock when calling */ +static int wh_post_nolock (wh_callback_t *cb, char const *data) /* {{{ */ { int status = 0; - curl_easy_setopt (cb->curl, CURLOPT_POSTFIELDS, cb->send_buffer); + curl_easy_setopt (cb->curl, CURLOPT_POSTFIELDS, data); status = curl_easy_perform (cb->curl); wh_log_http_error (cb); @@ -126,7 +130,7 @@ static int wh_send_buffer (wh_callback_t *cb) /* {{{ */ status, cb->curl_errbuf); } return (status); -} /* }}} wh_send_buffer */ +} /* }}} wh_post_nolock */ static int wh_callback_init (wh_callback_t *cb) /* {{{ */ { @@ -156,9 +160,8 @@ static int wh_callback_init (wh_callback_t *cb) /* {{{ */ curl_easy_setopt (cb->curl, CURLOPT_NOSIGNAL, 1L); curl_easy_setopt (cb->curl, CURLOPT_USERAGENT, COLLECTD_USERAGENT); - cb->headers = NULL; cb->headers = curl_slist_append (cb->headers, "Accept: */*"); - if (cb->format == WH_FORMAT_JSON) + if (cb->format == WH_FORMAT_JSON || cb->format == WH_FORMAT_KAIROSDB) cb->headers = curl_slist_append (cb->headers, "Content-Type: application/json"); else cb->headers = curl_slist_append (cb->headers, "Content-Type: text/plain"); @@ -241,16 +244,16 @@ static int wh_flush_nolock (cdtime_t timeout, wh_callback_t *cb) /* {{{ */ if (cb->format == WH_FORMAT_COMMAND) { - if (cb->send_buffer_fill <= 0) + if (cb->send_buffer_fill == 0) { cb->send_buffer_init_time = cdtime (); return (0); } - status = wh_send_buffer (cb); + status = wh_post_nolock (cb, cb->send_buffer); wh_reset_buffer (cb); } - else if (cb->format == WH_FORMAT_JSON) + else if (cb->format == WH_FORMAT_JSON || cb->format == WH_FORMAT_KAIROSDB) { if (cb->send_buffer_fill <= 2) { @@ -269,7 +272,7 @@ static int wh_flush_nolock (cdtime_t timeout, wh_callback_t *cb) /* {{{ */ return (status); } - status = wh_send_buffer (cb); + status = wh_post_nolock (cb, cb->send_buffer); wh_reset_buffer (cb); } else @@ -297,15 +300,11 @@ static int wh_flush (cdtime_t timeout, /* {{{ */ pthread_mutex_lock (&cb->send_lock); - if (cb->curl == NULL) + if (wh_callback_init (cb) != 0) { - status = wh_callback_init (cb); - if (status != 0) - { - ERROR ("write_http plugin: wh_callback_init failed."); - pthread_mutex_unlock (&cb->send_lock); - return (-1); - } + ERROR ("write_http plugin: wh_callback_init failed."); + pthread_mutex_unlock (&cb->send_lock); + return (-1); } status = wh_flush_nolock (timeout, cb); @@ -323,7 +322,8 @@ static void wh_callback_free (void *data) /* {{{ */ cb = data; - wh_flush_nolock (/* timeout = */ 0, cb); + if (cb->send_buffer != NULL) + wh_flush_nolock (/* timeout = */ 0, cb); if (cb->curl != NULL) { @@ -397,16 +397,11 @@ static int wh_write_command (const data_set_t *ds, const value_list_t *vl, /* {{ } pthread_mutex_lock (&cb->send_lock); - - if (cb->curl == NULL) + if (wh_callback_init (cb) != 0) { - status = wh_callback_init (cb); - if (status != 0) - { - ERROR ("write_http plugin: wh_callback_init failed."); - pthread_mutex_unlock (&cb->send_lock); - return (-1); - } + ERROR ("write_http plugin: wh_callback_init failed."); + pthread_mutex_unlock (&cb->send_lock); + return (-1); } if (command_len >= cb->send_buffer_free) @@ -445,6 +440,55 @@ static int wh_write_json (const data_set_t *ds, const value_list_t *vl, /* {{{ * int status; pthread_mutex_lock (&cb->send_lock); + if (wh_callback_init (cb) != 0) + { + ERROR ("write_http plugin: wh_callback_init failed."); + pthread_mutex_unlock (&cb->send_lock); + return (-1); + } + + status = format_json_value_list (cb->send_buffer, + &cb->send_buffer_fill, + &cb->send_buffer_free, + ds, vl, cb->store_rates); + if (status == -ENOMEM) + { + status = wh_flush_nolock (/* timeout = */ 0, cb); + if (status != 0) + { + wh_reset_buffer (cb); + pthread_mutex_unlock (&cb->send_lock); + return (status); + } + + status = format_json_value_list (cb->send_buffer, + &cb->send_buffer_fill, + &cb->send_buffer_free, + ds, vl, cb->store_rates); + } + if (status != 0) + { + pthread_mutex_unlock (&cb->send_lock); + return (status); + } + + DEBUG ("write_http plugin: <%s> buffer %zu/%zu (%g%%)", + cb->location, + cb->send_buffer_fill, cb->send_buffer_size, + 100.0 * ((double) cb->send_buffer_fill) / ((double) cb->send_buffer_size)); + + /* Check if we have enough space for this command. */ + pthread_mutex_unlock (&cb->send_lock); + + return (0); +} /* }}} int wh_write_json */ + +static int wh_write_kairosdb (const data_set_t *ds, const value_list_t *vl, /* {{{ */ + wh_callback_t *cb) +{ + int status; + + pthread_mutex_lock (&cb->send_lock); if (cb->curl == NULL) { @@ -457,11 +501,11 @@ static int wh_write_json (const data_set_t *ds, const value_list_t *vl, /* {{{ * } } - status = format_json_value_list (cb->send_buffer, + status = format_kairosdb_value_list (cb->send_buffer, &cb->send_buffer_fill, &cb->send_buffer_free, ds, vl, cb->store_rates); - if (status == (-ENOMEM)) + if (status == -ENOMEM) { status = wh_flush_nolock (/* timeout = */ 0, cb); if (status != 0) @@ -471,7 +515,7 @@ static int wh_write_json (const data_set_t *ds, const value_list_t *vl, /* {{{ * return (status); } - status = format_json_value_list (cb->send_buffer, + status = format_kairosdb_value_list (cb->send_buffer, &cb->send_buffer_fill, &cb->send_buffer_free, ds, vl, cb->store_rates); @@ -491,7 +535,7 @@ static int wh_write_json (const data_set_t *ds, const value_list_t *vl, /* {{{ * pthread_mutex_unlock (&cb->send_lock); return (0); -} /* }}} int wh_write_json */ +} /* }}} int wh_write_kairosdb */ static int wh_write (const data_set_t *ds, const value_list_t *vl, /* {{{ */ user_data_t *user_data) @@ -503,15 +547,55 @@ static int wh_write (const data_set_t *ds, const value_list_t *vl, /* {{{ */ return (-EINVAL); cb = user_data->data; + assert (cb->send_metrics); - if (cb->format == WH_FORMAT_JSON) + switch(cb->format) { + case WH_FORMAT_JSON: status = wh_write_json (ds, vl, cb); - else + break; + case WH_FORMAT_KAIROSDB: + status = wh_write_kairosdb (ds, vl, cb); + break; + default: status = wh_write_command (ds, vl, cb); - + break; + } return (status); } /* }}} int wh_write */ +static int wh_notify (notification_t const *n, user_data_t *ud) /* {{{ */ +{ + wh_callback_t *cb; + char alert[4096]; + int status; + + if ((ud == NULL) || (ud->data == NULL)) + return (EINVAL); + + cb = ud->data; + assert (cb->send_notifications); + + status = format_json_notification (alert, sizeof (alert), n); + if (status != 0) + { + ERROR ("write_http plugin: formatting notification failed"); + return status; + } + + pthread_mutex_lock (&cb->send_lock); + if (wh_callback_init (cb) != 0) + { + ERROR ("write_http plugin: wh_callback_init failed."); + pthread_mutex_unlock (&cb->send_lock); + return (-1); + } + + status = wh_post_nolock (cb, alert); + pthread_mutex_unlock (&cb->send_lock); + + return (status); +} /* }}} int wh_notify */ + static int config_set_format (wh_callback_t *cb, /* {{{ */ oconfig_item_t *ci) { @@ -530,6 +614,8 @@ static int config_set_format (wh_callback_t *cb, /* {{{ */ cb->format = WH_FORMAT_COMMAND; else if (strcasecmp ("JSON", string) == 0) cb->format = WH_FORMAT_JSON; + else if (strcasecmp ("KAIROSDB", string) == 0) + cb->format = WH_FORMAT_KAIROSDB; else { ERROR ("write_http plugin: Invalid format string: %s", @@ -540,14 +626,31 @@ static int config_set_format (wh_callback_t *cb, /* {{{ */ return (0); } /* }}} int config_set_format */ +static int wh_config_append_string (const char *name, struct curl_slist **dest, /* {{{ */ + oconfig_item_t *ci) +{ + struct curl_slist *temp = NULL; + if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) + { + WARNING ("write_http plugin: `%s' needs exactly one string argument.", name); + return (-1); + } + + temp = curl_slist_append(*dest, ci->values[0].value.string); + if (temp == NULL) + return (-1); + + *dest = temp; + + return (0); +} /* }}} int wh_config_append_string */ + 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 status = 0; - int i; cb = calloc (1, sizeof (*cb)); if (cb == NULL) @@ -563,7 +666,8 @@ static int wh_config_node (oconfig_item_t *ci) /* {{{ */ cb->timeout = 0; cb->log_http_error = 0; cb->headers = NULL; - + cb->send_metrics = 1; + cb->send_notifications = 0; pthread_mutex_init (&cb->send_lock, /* attr = */ NULL); @@ -573,7 +677,7 @@ static int wh_config_node (oconfig_item_t *ci) /* {{{ */ if (strcasecmp ("URL", ci->key) == 0) cf_util_get_string (ci, &cb->location); - for (i = 0; i < ci->children_num; i++) + for (int i = 0; i < ci->children_num; i++) { oconfig_item_t *child = ci->children + i; @@ -632,6 +736,10 @@ static int wh_config_node (oconfig_item_t *ci) /* {{{ */ } else if (strcasecmp ("Format", child->key) == 0) status = config_set_format (cb, child); + else if (strcasecmp ("Metrics", child->key) == 0) + cf_util_get_boolean (child, &cb->send_metrics); + else if (strcasecmp ("Notifications", child->key) == 0) + cf_util_get_boolean (child, &cb->send_notifications); else if (strcasecmp ("StoreRates", child->key) == 0) status = cf_util_get_boolean (child, &cb->store_rates); else if (strcasecmp ("BufferSize", child->key) == 0) @@ -642,6 +750,8 @@ static int wh_config_node (oconfig_item_t *ci) /* {{{ */ status = cf_util_get_int (child, &cb->timeout); else if (strcasecmp ("LogHttpError", child->key) == 0) status = cf_util_get_boolean (child, &cb->log_http_error); + else if (strcasecmp ("Header", child->key) == 0) + status = wh_config_append_string ("Header", &cb->headers, child); else { ERROR ("write_http plugin: Invalid configuration " @@ -667,6 +777,14 @@ static int wh_config_node (oconfig_item_t *ci) /* {{{ */ return (-1); } + if (!cb->send_metrics && !cb->send_notifications) + { + ERROR ("write_http plugin: Neither metrics nor notifications " + "are enabled for \"%s\".", cb->name); + wh_callback_free (cb); + return (-1); + } + if (cb->low_speed_limit > 0) cb->low_speed_time = CDTIME_T_TO_TIME_T(plugin_get_interval()); @@ -694,22 +812,34 @@ static int wh_config_node (oconfig_item_t *ci) /* {{{ */ 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; + user_data_t user_data = { + .data = cb + }; + plugin_register_flush (callback_name, wh_flush, &user_data); user_data.free_func = wh_callback_free; - plugin_register_write (callback_name, wh_write, &user_data); + + if (cb->send_metrics) + { + plugin_register_write (callback_name, wh_write, &user_data); + user_data.free_func = NULL; + + plugin_register_flush (callback_name, wh_flush, &user_data); + } + + if (cb->send_notifications) + { + plugin_register_notification (callback_name, wh_notify, &user_data); + user_data.free_func = NULL; + } return (0); } /* }}} int wh_config_node */ static int wh_config (oconfig_item_t *ci) /* {{{ */ { - int i; - - for (i = 0; i < ci->children_num; i++) + for (int i = 0; i < ci->children_num; i++) { oconfig_item_t *child = ci->children + i;