summaryrefslogtreecommitdiffstats
path: root/src/fluent-bit/plugins/out_kafka_rest/kafka_conf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fluent-bit/plugins/out_kafka_rest/kafka_conf.c')
-rw-r--r--src/fluent-bit/plugins/out_kafka_rest/kafka_conf.c223
1 files changed, 223 insertions, 0 deletions
diff --git a/src/fluent-bit/plugins/out_kafka_rest/kafka_conf.c b/src/fluent-bit/plugins/out_kafka_rest/kafka_conf.c
new file mode 100644
index 000000000..3df50eb8b
--- /dev/null
+++ b/src/fluent-bit/plugins/out_kafka_rest/kafka_conf.c
@@ -0,0 +1,223 @@
+/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+
+/* Fluent Bit
+ * ==========
+ * Copyright (C) 2015-2022 The Fluent Bit Authors
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <fluent-bit/flb_output_plugin.h>
+#include <fluent-bit/flb_mem.h>
+#include <fluent-bit/flb_utils.h>
+
+#include "kafka.h"
+#include "kafka_conf.h"
+
+struct flb_kafka_rest *flb_kr_conf_create(struct flb_output_instance *ins,
+ struct flb_config *config)
+{
+ long part;
+ int io_flags = 0;
+ const char *tmp;
+ char *endptr;
+ struct flb_upstream *upstream;
+ struct flb_kafka_rest *ctx;
+ int ret;
+
+ /* Allocate context */
+ ctx = flb_calloc(1, sizeof(struct flb_kafka_rest));
+ if (!ctx) {
+ flb_errno();
+ return NULL;
+ }
+ ctx->ins = ins;
+
+ ret = flb_output_config_map_set(ins, (void *) ctx);
+ if (ret == -1) {
+ flb_free(ctx);
+ return NULL;
+ }
+
+ /* Get network configuration */
+ flb_output_net_default("127.0.0.1", 8082, ins);
+
+ /* use TLS ? */
+ if (ins->use_tls == FLB_TRUE) {
+ io_flags = FLB_IO_TLS;
+ }
+ else {
+ io_flags = FLB_IO_TCP;
+ }
+
+ if (ins->host.ipv6 == FLB_TRUE) {
+ io_flags |= FLB_IO_IPV6;
+ }
+
+ /* Prepare an upstream handler */
+ upstream = flb_upstream_create(config,
+ ins->host.name,
+ ins->host.port,
+ io_flags,
+ ins->tls);
+ if (!upstream) {
+ flb_plg_error(ctx->ins, "cannot create Upstream context");
+ flb_kr_conf_destroy(ctx);
+ return NULL;
+ }
+ ctx->u = upstream;
+ flb_output_upstream_set(ctx->u, ins);
+
+ flb_output_upstream_set(ctx->u, ins);
+
+ /* HTTP Auth */
+ tmp = flb_output_get_property("http_user", ins);
+ if (tmp) {
+ ctx->http_user = flb_strdup(tmp);
+
+ tmp = flb_output_get_property("http_passwd", ins);
+ if (tmp) {
+ ctx->http_passwd = flb_strdup(tmp);
+ }
+ else {
+ ctx->http_passwd = flb_strdup("");
+ }
+ }
+
+ /* Time Key */
+ tmp = flb_output_get_property("time_key", ins);
+ if (tmp) {
+ ctx->time_key = flb_strdup(tmp);
+ ctx->time_key_len = strlen(tmp);
+ }
+ else {
+ ctx->time_key = flb_strdup(FLB_KAFKA_TIME_KEY);
+ ctx->time_key_len = sizeof(FLB_KAFKA_TIME_KEY) - 1;
+ }
+
+ /* Time Key Format */
+ tmp = flb_output_get_property("time_key_format", ins);
+ if (tmp) {
+ ctx->time_key_format = flb_strdup(tmp);
+ ctx->time_key_format_len = strlen(tmp);
+ }
+ else {
+ ctx->time_key_format = flb_strdup(FLB_KAFKA_TIME_KEYF);
+ ctx->time_key_format_len = sizeof(FLB_KAFKA_TIME_KEYF) - 1;
+ }
+
+ /* Include Tag key */
+ tmp = flb_output_get_property("include_tag_key", ins);
+ if (tmp) {
+ ctx->include_tag_key = flb_utils_bool(tmp);
+ }
+ else {
+ ctx->include_tag_key = FLB_FALSE;
+ }
+
+ /* Tag Key */
+ if (ctx->include_tag_key == FLB_TRUE) {
+ tmp = flb_output_get_property("tag_key", ins);
+ if (tmp) {
+ ctx->tag_key = flb_strdup(tmp);
+ ctx->tag_key_len = strlen(tmp);
+ if (tmp[0] != '_') {
+ flb_plg_warn(ctx->ins, "consider use a tag_key "
+ "that starts with '_'");
+ }
+ }
+ else {
+ ctx->tag_key = flb_strdup(FLB_KAFKA_TAG_KEY);
+ ctx->tag_key_len = sizeof(FLB_KAFKA_TAG_KEY) - 1;
+ }
+ }
+
+ /* Kafka: partition */
+ tmp = flb_output_get_property("partition", ins);
+ if (tmp) {
+ errno = 0;
+ part = strtol(tmp, &endptr, 10);
+ if ((errno == ERANGE && (part == LONG_MAX || part == LONG_MIN))
+ || (errno != 0 && part == 0)) {
+ flb_plg_error(ctx->ins, "invalid partition number");
+ }
+
+ if (endptr == tmp) {
+ flb_plg_error(ctx->ins, "invalid partition number");
+ }
+ ctx->partition = part;
+ }
+ else {
+ ctx->partition = -1;
+ }
+
+ /* Kafka: topic */
+ tmp = flb_output_get_property("topic", ins);
+ if (tmp) {
+ ctx->topic = flb_strdup(tmp);
+ }
+ else {
+ ctx->topic = flb_strdup("fluent-bit");
+ }
+
+ /* Set partition based on topic */
+ tmp = flb_output_get_property("url_path", ins);
+ if (tmp) {
+ ctx->url_path = flb_strdup(tmp);
+ snprintf(ctx->uri, sizeof(ctx->uri) - 1, "%s/topics/%s", ctx->url_path, ctx->topic);
+ } else {
+ ctx->url_path = NULL;
+ snprintf(ctx->uri, sizeof(ctx->uri) - 1, "/topics/%s", ctx->topic);
+ }
+
+ /* Kafka: message key */
+ tmp = flb_output_get_property("message_key", ins);
+ if (tmp) {
+ ctx->message_key = flb_strdup(tmp);
+ ctx->message_key_len = strlen(tmp);
+ }
+ else {
+ ctx->message_key = NULL;
+ ctx->message_key_len = 0;
+ }
+
+ return ctx;
+}
+
+int flb_kr_conf_destroy(struct flb_kafka_rest *ctx)
+{
+ flb_free(ctx->topic);
+ flb_free(ctx->http_user);
+ flb_free(ctx->http_passwd);
+
+ flb_free(ctx->time_key);
+ flb_free(ctx->time_key_format);
+
+ if (ctx->url_path) {
+ flb_free(ctx->url_path);
+ }
+
+ if (ctx->include_tag_key) {
+ flb_free(ctx->tag_key);
+ }
+
+ if (ctx->message_key) {
+ flb_free(ctx->message_key);
+ }
+
+ flb_upstream_destroy(ctx->u);
+ flb_free(ctx);
+
+ return 0;
+}