Replies: 1 comment 1 reply
-
Hey Victor! Could you provide a sample log line or maybe even a Rubular link? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm using the multiline parser to parse Postgres CSV logs. It works well, except I'm struggling to get the last item in the log files to be picked up.
Following the docs here: https://docs.fluentbit.io/manual/administration/configuring-fluent-bit/multiline-parsing
I'm configuring my multiline parser like this:
It works well, but the last item in the log files will not get picked up until the entry. I assume because fluent-bit has not discovered the next "start" entry thus has not "closed" the current item.
There's no documentation on how to "end" the parsing. Is this possible? In our configuration, we print out the database name at the end of each CSV log entry. So in theory I could try to do something like this:
I tried the above, while it's not broken anything it also does not solve my issue.
Anyone can help?
Beta Was this translation helpful? Give feedback.
All reactions