-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Description
I am noticing a weird behavior with fluent bit with input mode as forward. The problem is whenever I send a log to fluent bit on forward mode it gets cumulated sort of like
log0
log0
log1
log0
log1
log2
i have a way to replicate the issue as well.
- docker run -p "24224:24224" fluent/fluent-bit:latest /fluent-bit/bin/fluent-bit -i forward -o stdout
- docker run -t -i --log-driver=fluentd --log-opt fluentd-address=my-ip:24224 ubuntu
- then enter this command multiple times "echo 'hi' >> /dev/null"
- you will notice that on the fluent bit logs the log for the command at 3 command are getting repeated the way i have mentioned at top. e.g. log0, log 0, log1, log0, log1, log2
I have seen the same issue when I hit the fluent bit using a java program using the fluentd-logger. I think its a bug. Any help on this would be helpful.