summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 268ab90)
raw | patch | inline | side by side (parent: 268ab90)
author | Pierre-Yves Ritschard <pyr@spootnik.org> | |
Thu, 24 Jul 2014 07:46:39 +0000 (09:46 +0200) | ||
committer | Pierre-Yves Ritschard <pyr@spootnik.org> | |
Thu, 24 Jul 2014 07:46:39 +0000 (09:46 +0200) |
src/write_kafka.c | patch | blob | history |
diff --git a/src/write_kafka.c b/src/write_kafka.c
index 541022ef88b2e5b842422996c6472f790c3c0167..97db42657055999fa114cd1c70ca9f882ba4325c 100644 (file)
--- a/src/write_kafka.c
+++ b/src/write_kafka.c
static int kafka_write(const data_set_t *, const value_list_t *, user_data_t *);
static int32_t kafka_partition(const rd_kafka_topic_t *, const void *, size_t,
int32_t, void *, void *);
+static void kafka_log(const rd_kafka_t *, int, const char *, const char *);
+
+static void kafka_log(const rd_kafka_t *rkt, int level,
+ const char *fac, const char *msg)
+{
+ plugin_log(level, "%s", msg);
+}
static int32_t kafka_partition(const rd_kafka_topic_t *rkt,
const void *keydata, size_t keylen,
@@ -169,6 +176,7 @@ static void kafka_config_topic(rd_kafka_conf_t *conf, oconfig_item_t *ci) /* {{{
tctx->escape_char = '.';
tctx->store_rates = 1;
+ rd_kafka_conf_set_log_cb(conf, kafka_log);
if ((tctx->kafka = rd_kafka_new(RD_KAFKA_PRODUCER, conf,
errbuf, sizeof(errbuf))) == NULL) {
sfree(tctx);