-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
stdout.c
188 lines (168 loc) · 5.2 KB
/
stdout.c
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* Fluent Bit
* ==========
* Copyright (C) 2019-2020 The Fluent Bit Authors
* Copyright (C) 2015-2018 Treasure Data Inc.
*
* 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_utils.h>
#include <fluent-bit/flb_slist.h>
#include <fluent-bit/flb_time.h>
#include <fluent-bit/flb_pack.h>
#include <fluent-bit/flb_config_map.h>
#include <msgpack.h>
#include "stdout.h"
static int cb_stdout_init(struct flb_output_instance *ins,
struct flb_config *config, void *data)
{
int ret;
const char *tmp;
struct flb_stdout *ctx = NULL;
(void) ins;
(void) config;
(void) data;
ctx = flb_calloc(1, sizeof(struct flb_stdout));
if (!ctx) {
flb_errno();
return -1;
}
ctx->ins = ins;
ret = flb_output_config_map_set(ins, (void *) ctx);
if (ret == -1) {
flb_free(ctx);
return -1;
}
ctx->out_format = FLB_PACK_JSON_FORMAT_NONE;
tmp = flb_output_get_property("format", ins);
if (tmp) {
ret = flb_pack_to_json_format_type(tmp);
if (ret == -1) {
flb_plg_error(ctx->ins, "unrecognized 'format' option. "
"Using 'msgpack'");
}
else {
ctx->out_format = ret;
}
}
/* Date format for JSON output */
ctx->json_date_format = FLB_PACK_JSON_DATE_DOUBLE;
tmp = flb_output_get_property("json_date_format", ins);
if (tmp) {
ret = flb_pack_to_json_date_type(tmp);
if (ret == -1) {
flb_plg_error(ctx->ins, "invalid json_date_format '%s'. "
"Using 'double' type", tmp);
}
else {
ctx->json_date_format = ret;
}
}
/* Export context */
flb_output_set_context(ins, ctx);
return 0;
}
static void cb_stdout_flush(const void *data, size_t bytes,
const char *tag, int tag_len,
struct flb_input_instance *i_ins,
void *out_context,
struct flb_config *config)
{
msgpack_unpacked result;
size_t off = 0, cnt = 0;
struct flb_stdout *ctx = out_context;
flb_sds_t json;
char *buf = NULL;
(void) i_ins;
(void) config;
struct flb_time tmp;
msgpack_object *p;
if (ctx->out_format != FLB_PACK_JSON_FORMAT_NONE) {
json = flb_pack_msgpack_to_json_format(data, bytes,
ctx->out_format,
ctx->json_date_format,
ctx->json_date_key);
write(STDOUT_FILENO, json, flb_sds_len(json));
flb_sds_destroy(json);
/*
* If we are 'not' in json_lines mode, we need to add an extra
* breakline.
*/
if (ctx->out_format != FLB_PACK_JSON_FORMAT_LINES) {
printf("\n");
}
fflush(stdout);
}
else {
/* A tag might not contain a NULL byte */
buf = flb_malloc(tag_len + 1);
if (!buf) {
flb_errno();
FLB_OUTPUT_RETURN(FLB_RETRY);
}
memcpy(buf, tag, tag_len);
buf[tag_len] = '\0';
msgpack_unpacked_init(&result);
while (msgpack_unpack_next(&result, data, bytes, &off) == MSGPACK_UNPACK_SUCCESS) {
printf("[%zd] %s: [", cnt++, buf);
flb_time_pop_from_msgpack(&tmp, &result, &p);
printf("%"PRIu32".%09lu, ", (uint32_t)tmp.tm.tv_sec, tmp.tm.tv_nsec);
msgpack_object_print(stdout, *p);
printf("]\n");
}
msgpack_unpacked_destroy(&result);
flb_free(buf);
}
fflush(stdout);
FLB_OUTPUT_RETURN(FLB_OK);
}
static int cb_stdout_exit(void *data, struct flb_config *config)
{
struct flb_stdout *ctx = data;
if (!ctx) {
return 0;
}
flb_free(ctx);
return 0;
}
/* Configuration properties map */
static struct flb_config_map config_map[] = {
{
FLB_CONFIG_MAP_STR, "format", NULL,
0, FLB_FALSE, 0,
NULL
},
{
FLB_CONFIG_MAP_STR, "json_date_format", NULL,
0, FLB_FALSE, 0,
NULL
},
{
FLB_CONFIG_MAP_STR, "json_date_key", "date",
0, FLB_TRUE, offsetof(struct flb_stdout, json_date_key),
NULL
},
/* EOF */
{0}
};
/* Plugin registration */
struct flb_output_plugin out_stdout_plugin = {
.name = "stdout",
.description = "Prints events to STDOUT",
.cb_init = cb_stdout_init,
.cb_flush = cb_stdout_flush,
.cb_exit = cb_stdout_exit,
.flags = 0,
.config_map = config_map
};