2 * collectd - src/write_kafka.c
3 * Copyright (C) 2014 Pierre-Yves Ritschard
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
24 * Pierre-Yves Ritschard <pyr at spootnik.org>
30 #include "utils/cmds/putval.h"
31 #include "utils/common/common.h"
32 #include "utils/format_graphite/format_graphite.h"
33 #include "utils/format_json/format_json.h"
34 #include "utils_random.h"
37 #include <librdkafka/rdkafka.h>
40 struct kafka_topic_context {
41 #define KAFKA_FORMAT_JSON 0
42 #define KAFKA_FORMAT_COMMAND 1
43 #define KAFKA_FORMAT_GRAPHITE 2
45 unsigned int graphite_flags;
47 rd_kafka_topic_conf_t *conf;
48 rd_kafka_topic_t *topic;
49 rd_kafka_conf_t *kafka_conf;
59 static int kafka_handle(struct kafka_topic_context *);
60 static int kafka_write(const data_set_t *, const value_list_t *, user_data_t *);
61 static int32_t kafka_partition(const rd_kafka_topic_t *, const void *, size_t,
62 int32_t, void *, void *);
64 /* Version 0.9.0 of librdkafka deprecates rd_kafka_set_logger() in favor of
65 * rd_kafka_conf_set_log_cb(). This is to make sure we're not using the
66 * deprecated function. */
67 #ifdef HAVE_LIBRDKAFKA_LOG_CB
68 #undef HAVE_LIBRDKAFKA_LOGGER
71 #if defined(HAVE_LIBRDKAFKA_LOGGER) || defined(HAVE_LIBRDKAFKA_LOG_CB)
72 static void kafka_log(const rd_kafka_t *, int, const char *, const char *);
74 static void kafka_log(const rd_kafka_t *rkt, int level, const char *fac,
76 plugin_log(level, "%s", msg);
80 static rd_kafka_resp_err_t kafka_error() {
81 #if RD_KAFKA_VERSION >= 0x000b00ff
82 return rd_kafka_last_error();
84 return rd_kafka_errno2err(errno);
88 static uint32_t kafka_hash(const char *keydata, size_t keylen) {
90 for (; keylen > 0; keylen--)
91 hash = ((hash << 5) + hash) + keydata[keylen - 1];
95 /* 31 bit -> 4 byte -> 8 byte hex string + null byte */
96 #define KAFKA_RANDOM_KEY_SIZE 9
97 #define KAFKA_RANDOM_KEY_BUFFER \
98 (char[KAFKA_RANDOM_KEY_SIZE]) { "" }
99 static char *kafka_random_key(char buffer[static KAFKA_RANDOM_KEY_SIZE]) {
100 ssnprintf(buffer, KAFKA_RANDOM_KEY_SIZE, "%08" PRIX32, cdrand_u());
104 static int32_t kafka_partition(const rd_kafka_topic_t *rkt, const void *keydata,
105 size_t keylen, int32_t partition_cnt, void *p,
107 uint32_t key = kafka_hash(keydata, keylen);
108 uint32_t target = key % partition_cnt;
109 int32_t i = partition_cnt;
111 while (--i > 0 && !rd_kafka_topic_partition_available(rkt, target)) {
112 target = (target + 1) % partition_cnt;
117 static int kafka_handle(struct kafka_topic_context *ctx) /* {{{ */
120 rd_kafka_conf_t *conf;
121 rd_kafka_topic_conf_t *topic_conf;
123 if (ctx->kafka != NULL && ctx->topic != NULL)
126 if (ctx->kafka == NULL) {
127 if ((conf = rd_kafka_conf_dup(ctx->kafka_conf)) == NULL) {
128 ERROR("write_kafka plugin: cannot duplicate kafka config");
132 if ((ctx->kafka = rd_kafka_new(RD_KAFKA_PRODUCER, conf, errbuf,
133 sizeof(errbuf))) == NULL) {
134 ERROR("write_kafka plugin: cannot create kafka handle.");
138 rd_kafka_conf_destroy(ctx->kafka_conf);
139 ctx->kafka_conf = NULL;
141 INFO("write_kafka plugin: created KAFKA handle : %s",
142 rd_kafka_name(ctx->kafka));
144 #if defined(HAVE_LIBRDKAFKA_LOGGER) && !defined(HAVE_LIBRDKAFKA_LOG_CB)
145 rd_kafka_set_logger(ctx->kafka, kafka_log);
149 if (ctx->topic == NULL) {
150 if ((topic_conf = rd_kafka_topic_conf_dup(ctx->conf)) == NULL) {
151 ERROR("write_kafka plugin: cannot duplicate kafka topic config");
155 if ((ctx->topic = rd_kafka_topic_new(ctx->kafka, ctx->topic_name,
156 topic_conf)) == NULL) {
157 ERROR("write_kafka plugin: cannot create topic : %s\n",
158 rd_kafka_err2str(kafka_error()));
162 rd_kafka_topic_conf_destroy(ctx->conf);
165 INFO("write_kafka plugin: handle created for topic : %s",
166 rd_kafka_topic_name(ctx->topic));
171 } /* }}} int kafka_handle */
173 static int kafka_write(const data_set_t *ds, /* {{{ */
174 const value_list_t *vl, user_data_t *ud) {
179 size_t bfree = sizeof(buffer);
182 struct kafka_topic_context *ctx = ud->data;
184 if ((ds == NULL) || (vl == NULL) || (ctx == NULL))
187 pthread_mutex_lock(&ctx->lock);
188 status = kafka_handle(ctx);
189 pthread_mutex_unlock(&ctx->lock);
193 bzero(buffer, sizeof(buffer));
195 switch (ctx->format) {
196 case KAFKA_FORMAT_COMMAND:
197 status = cmd_create_putval(buffer, sizeof(buffer), ds, vl);
199 ERROR("write_kafka plugin: cmd_create_putval failed with status %i.",
203 blen = strlen(buffer);
205 case KAFKA_FORMAT_JSON:
206 format_json_initialize(buffer, &bfill, &bfree);
207 format_json_value_list(buffer, &bfill, &bfree, ds, vl, ctx->store_rates);
208 format_json_finalize(buffer, &bfill, &bfree);
209 blen = strlen(buffer);
211 case KAFKA_FORMAT_GRAPHITE:
213 format_graphite(buffer, sizeof(buffer), ds, vl, ctx->prefix,
214 ctx->postfix, ctx->escape_char, ctx->graphite_flags);
216 ERROR("write_kafka plugin: format_graphite failed with status %i.",
220 blen = strlen(buffer);
223 ERROR("write_kafka plugin: invalid format %i.", ctx->format);
228 (ctx->key != NULL) ? ctx->key : kafka_random_key(KAFKA_RANDOM_KEY_BUFFER);
229 keylen = strlen(key);
231 rd_kafka_produce(ctx->topic, RD_KAFKA_PARTITION_UA, RD_KAFKA_MSG_F_COPY,
232 buffer, blen, key, keylen, NULL);
235 } /* }}} int kafka_write */
237 static void kafka_topic_context_free(void *p) /* {{{ */
239 struct kafka_topic_context *ctx = p;
244 if (ctx->topic_name != NULL)
245 sfree(ctx->topic_name);
246 if (ctx->topic != NULL)
247 rd_kafka_topic_destroy(ctx->topic);
248 if (ctx->conf != NULL)
249 rd_kafka_topic_conf_destroy(ctx->conf);
250 if (ctx->kafka_conf != NULL)
251 rd_kafka_conf_destroy(ctx->kafka_conf);
252 if (ctx->kafka != NULL)
253 rd_kafka_destroy(ctx->kafka);
256 } /* }}} void kafka_topic_context_free */
258 static void kafka_config_topic(rd_kafka_conf_t *conf,
259 oconfig_item_t *ci) /* {{{ */
262 struct kafka_topic_context *tctx;
265 char callback_name[DATA_MAX_NAME_LEN];
267 oconfig_item_t *child;
268 rd_kafka_conf_res_t ret;
270 if ((tctx = calloc(1, sizeof(*tctx))) == NULL) {
271 ERROR("write_kafka plugin: calloc failed.");
275 tctx->escape_char = '.';
276 tctx->store_rates = true;
277 tctx->format = KAFKA_FORMAT_JSON;
280 if ((tctx->kafka_conf = rd_kafka_conf_dup(conf)) == NULL) {
282 ERROR("write_kafka plugin: cannot allocate memory for kafka config");
286 #ifdef HAVE_LIBRDKAFKA_LOG_CB
287 rd_kafka_conf_set_log_cb(tctx->kafka_conf, kafka_log);
290 if ((tctx->conf = rd_kafka_topic_conf_new()) == NULL) {
291 rd_kafka_conf_destroy(tctx->kafka_conf);
293 ERROR("write_kafka plugin: cannot create topic configuration.");
297 if (ci->values_num != 1) {
298 WARNING("kafka topic name needed.");
302 if (ci->values[0].type != OCONFIG_TYPE_STRING) {
303 WARNING("kafka topic needs a string argument.");
307 if ((tctx->topic_name = strdup(ci->values[0].value.string)) == NULL) {
308 ERROR("write_kafka plugin: cannot copy topic name.");
312 for (int i = 0; i < ci->children_num; i++) {
314 * The code here could be simplified but makes room
315 * for easy adding of new options later on.
317 child = &ci->children[i];
320 if (strcasecmp("Property", child->key) == 0) {
321 if (child->values_num != 2) {
322 WARNING("kafka properties need both a key and a value.");
325 if (child->values[0].type != OCONFIG_TYPE_STRING ||
326 child->values[1].type != OCONFIG_TYPE_STRING) {
327 WARNING("kafka properties needs string arguments.");
330 key = child->values[0].value.string;
331 val = child->values[1].value.string;
333 rd_kafka_topic_conf_set(tctx->conf, key, val, errbuf, sizeof(errbuf));
334 if (ret != RD_KAFKA_CONF_OK) {
335 WARNING("cannot set kafka topic property %s to %s: %s.", key, val,
340 } else if (strcasecmp("Key", child->key) == 0) {
341 if (cf_util_get_string(child, &tctx->key) != 0)
343 if (strcasecmp("Random", tctx->key) == 0) {
345 tctx->key = strdup(kafka_random_key(KAFKA_RANDOM_KEY_BUFFER));
347 } else if (strcasecmp("Format", child->key) == 0) {
348 status = cf_util_get_string(child, &key);
354 if (strcasecmp(key, "Command") == 0) {
355 tctx->format = KAFKA_FORMAT_COMMAND;
357 } else if (strcasecmp(key, "Graphite") == 0) {
358 tctx->format = KAFKA_FORMAT_GRAPHITE;
360 } else if (strcasecmp(key, "Json") == 0) {
361 tctx->format = KAFKA_FORMAT_JSON;
364 WARNING("write_kafka plugin: Invalid format string: %s", key);
369 } else if (strcasecmp("StoreRates", child->key) == 0) {
370 status = cf_util_get_boolean(child, &tctx->store_rates);
371 (void)cf_util_get_flag(child, &tctx->graphite_flags,
372 GRAPHITE_STORE_RATES);
374 } else if (strcasecmp("GraphiteSeparateInstances", child->key) == 0) {
375 status = cf_util_get_flag(child, &tctx->graphite_flags,
376 GRAPHITE_SEPARATE_INSTANCES);
378 } else if (strcasecmp("GraphiteAlwaysAppendDS", child->key) == 0) {
379 status = cf_util_get_flag(child, &tctx->graphite_flags,
380 GRAPHITE_ALWAYS_APPEND_DS);
382 } else if (strcasecmp("GraphitePreserveSeparator", child->key) == 0) {
383 status = cf_util_get_flag(child, &tctx->graphite_flags,
384 GRAPHITE_PRESERVE_SEPARATOR);
386 } else if (strcasecmp("GraphiteUseTags", child->key) == 0) {
388 cf_util_get_flag(child, &tctx->graphite_flags, GRAPHITE_USE_TAGS);
390 } else if (strcasecmp("GraphitePrefix", child->key) == 0) {
391 status = cf_util_get_string(child, &tctx->prefix);
392 } else if (strcasecmp("GraphitePostfix", child->key) == 0) {
393 status = cf_util_get_string(child, &tctx->postfix);
394 } else if (strcasecmp("GraphiteEscapeChar", child->key) == 0) {
395 char *tmp_buff = NULL;
396 status = cf_util_get_string(child, &tmp_buff);
397 if (strlen(tmp_buff) > 1)
398 WARNING("write_kafka plugin: The option \"GraphiteEscapeChar\" handles "
399 "only one character. Others will be ignored.");
400 tctx->escape_char = tmp_buff[0];
403 WARNING("write_kafka plugin: Invalid directive: %s.", child->key);
410 rd_kafka_topic_conf_set_partitioner_cb(tctx->conf, kafka_partition);
411 rd_kafka_topic_conf_set_opaque(tctx->conf, tctx);
413 ssnprintf(callback_name, sizeof(callback_name), "write_kafka/%s",
416 status = plugin_register_write(callback_name, kafka_write,
419 .free_func = kafka_topic_context_free,
422 WARNING("write_kafka plugin: plugin_register_write (\"%s\") "
423 "failed with status %i.",
424 callback_name, status);
428 pthread_mutex_init(&tctx->lock, /* attr = */ NULL);
432 if (tctx->topic_name != NULL)
433 free(tctx->topic_name);
434 if (tctx->conf != NULL)
435 rd_kafka_topic_conf_destroy(tctx->conf);
436 if (tctx->kafka_conf != NULL)
437 rd_kafka_conf_destroy(tctx->kafka_conf);
439 } /* }}} int kafka_config_topic */
441 static int kafka_config(oconfig_item_t *ci) /* {{{ */
443 oconfig_item_t *child;
444 rd_kafka_conf_t *conf;
445 rd_kafka_conf_res_t ret;
448 if ((conf = rd_kafka_conf_new()) == NULL) {
449 WARNING("cannot allocate kafka configuration.");
452 for (int i = 0; i < ci->children_num; i++) {
453 child = &ci->children[i];
455 if (strcasecmp("Topic", child->key) == 0) {
456 kafka_config_topic(conf, child);
457 } else if (strcasecmp(child->key, "Property") == 0) {
461 if (child->values_num != 2) {
462 WARNING("kafka properties need both a key and a value.");
465 if (child->values[0].type != OCONFIG_TYPE_STRING ||
466 child->values[1].type != OCONFIG_TYPE_STRING) {
467 WARNING("kafka properties needs string arguments.");
470 if ((key = strdup(child->values[0].value.string)) == NULL) {
471 WARNING("cannot allocate memory for attribute key.");
474 if ((val = strdup(child->values[1].value.string)) == NULL) {
475 WARNING("cannot allocate memory for attribute value.");
479 ret = rd_kafka_conf_set(conf, key, val, errbuf, sizeof(errbuf));
480 if (ret != RD_KAFKA_CONF_OK) {
481 WARNING("cannot set kafka property %s to %s: %s", key, val, errbuf);
489 WARNING("write_kafka plugin: Ignoring unknown "
490 "configuration option \"%s\" at top level.",
495 rd_kafka_conf_destroy(conf);
499 rd_kafka_conf_destroy(conf);
501 } /* }}} int kafka_config */
503 void module_register(void) {
504 plugin_register_complex_config("write_kafka", kafka_config);