Skip to content

Commit

Permalink
config: register new 'multilines' list
Browse files Browse the repository at this point in the history
Signed-off-by: Eduardo Silva <[email protected]>
  • Loading branch information
edsiper committed Jun 5, 2021
1 parent 14f00ca commit e152556
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions include/fluent-bit/flb_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ struct flb_config {
/* Parsers instances */
struct mk_list parsers;

/* Multiline instances */
struct mk_list multilines;

/* Outputs instances */
struct mk_list outputs; /* list of output plugins */

Expand Down
1 change: 1 addition & 0 deletions src/flb_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ struct flb_config *flb_config_init()
mk_list_init(&config->out_plugins);
mk_list_init(&config->inputs);
mk_list_init(&config->parsers);
mk_list_init(&config->multilines);
mk_list_init(&config->filters);
mk_list_init(&config->outputs);
mk_list_init(&config->proxies);
Expand Down

0 comments on commit e152556

Please sign in to comment.