blob: 1ef2cce16b409d6a1ff6e35a4bfe4c8b4c79c79f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/* -*- 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.
*/
#ifndef FLB_OUT_KAFKA_CONFIG_H
#define FLB_OUT_KAFKA_CONFIG_H
#include <fluent-bit/flb_output_plugin.h>
#include <fluent-bit/flb_pack.h>
#ifdef FLB_HAVE_AVRO_ENCODER
#include <fluent-bit/flb_avro.h>
#endif
#include <fluent-bit/flb_kafka.h>
#define FLB_KAFKA_FMT_JSON 0
#define FLB_KAFKA_FMT_MSGP 1
#define FLB_KAFKA_FMT_GELF 2
#ifdef FLB_HAVE_AVRO_ENCODER
#define FLB_KAFKA_FMT_AVRO 3
#endif
#define FLB_KAFKA_TS_KEY "@timestamp"
#define FLB_KAFKA_QUEUE_FULL_RETRIES "10"
/* rdkafka log levels based on syslog(3) */
#define FLB_KAFKA_LOG_EMERG 0
#define FLB_KAFKA_LOG_ALERT 1
#define FLB_KAFKA_LOG_CRIT 2
#define FLB_KAFKA_LOG_ERR 3
#define FLB_KAFKA_LOG_WARNING 4
#define FLB_KAFKA_LOG_NOTICE 5
#define FLB_KAFKA_LOG_INFO 6
#define FLB_KAFKA_LOG_DEBUG 7
#define FLB_JSON_DATE_DOUBLE 0
#define FLB_JSON_DATE_ISO8601 1
#define FLB_JSON_DATE_ISO8601_NS 2
#define FLB_JSON_DATE_ISO8601_FMT "%Y-%m-%dT%H:%M:%S"
struct flb_kafka_topic {
int name_len;
char *name;
rd_kafka_topic_t *tp;
struct mk_list _head;
};
struct flb_out_kafka {
struct flb_kafka kafka;
/* Config Parameters */
int format;
flb_sds_t format_str;
/* Optional topic key for routing */
int topic_key_len;
char *topic_key;
int timestamp_key_len;
char *timestamp_key;
int timestamp_format;
flb_sds_t timestamp_format_str;
int message_key_len;
char *message_key;
int message_key_field_len;
char *message_key_field;
/* Gelf Keys */
struct flb_gelf_fields gelf_fields;
/* Head of defined topics by configuration */
struct mk_list topics;
/*
* Blocked Status: since rdkafka have it own buffering queue, there is a
* chance that the queue becomes full, when that happens our default
* behavior is the following:
*
* - out_kafka yields and try to continue every second until it succeed. In
* the meanwhile blocked flag gets FLB_TRUE value.
* - when flushing more records and blocked == FLB_TRUE, issue
* a retry.
*/
int blocked;
int dynamic_topic;
int queue_full_retries;
/* Internal */
rd_kafka_conf_t *conf;
/* Plugin instance */
struct flb_output_instance *ins;
#ifdef FLB_HAVE_AVRO_ENCODER
// avro serialization requires a schema
// the schema is stored in json in avro_schema_str
//
// optionally the schema ID can be stashed in the avro data stream
// the schema ID is stored in avro_schema_id
// this is common at this time with large kafka installations and schema registries
// flb_sds_t avro_schema_str;
// flb_sds_t avro_schema_id;
struct flb_avro_fields avro_fields;
#endif
};
struct flb_out_kafka *flb_out_kafka_create(struct flb_output_instance *ins,
struct flb_config *config);
int flb_out_kafka_destroy(struct flb_out_kafka *ctx);
#endif
|