You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When specifying both a multiline config (multiline.parser) and Path_Key in the config, fluent-bit drops all log messages with this message:
[2022/10/19 15:05:47] [debug] [input chunk] skip ingesting data with 0 bytes
To Reproduce
fluent_bit_main.conf:
[INPUT]
Name tail
Key message
Path ./test.log
Path_Key path
Read_from_Head True
Tag json_log
multiline.parser multiline_parser
[OUTPUT]
Match *
Name stdout
fluent_bit_parser.conf:
[MULTILINE_PARSER]
flush_timeout 5000
name multiline_parser
type regex
rule "start_state" "^{.*" "cont"
rule "cont" "^[^{]" "cont"
Bug Report
Describe the bug
When specifying both a multiline config (
multiline.parser
) andPath_Key
in the config, fluent-bit drops all log messages with this message:To Reproduce
fluent_bit_main.conf:
fluent_bit_parser.conf:
test.log:
Run with:
Expected behavior
Three log mesages are output to stdout; Currently, none are put out, and
is put into stdout.
If I remove either the multiline or
Path_Key
config options, log messages are spit out in the manner expected (e.g. no multiline, or noPath_Key
).Your Environment
Related issues:
The text was updated successfully, but these errors were encountered: