Warning message while running configuration file #4075
Closed
rchinthalapalli
started this conversation in
General
Replies: 1 comment 1 reply
-
This repository is |
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
-
Hi,
I installed fluent-bit(Fluent Bit v1.9.0) in Amazon Linux machine and try to read file and send output to syslog location.
Below is the configuration:
[SERVICE]
Flush 5
Daemon off
Log_Level debug
[INPUT]
Name tail
Path /vertica/data/advana/v_advana_node0001_catalog/vertica.log
[OUTPUT]
name syslog
match *
#host localhost
host 127.0.0.1
port 514
mode udp
syslog_format rfc5424
syslog_maxsize 2048
#syslog_severity_key severity
#syslog_facility_key facility
#syslog_hostname_key hostname
#syslog_appname_key appname
syslog_message_key log
After running configuration file, getting below warning:
[2023/03/01 02:57:18] [debug] [input:tail:tail.0] inode=33555337 events: IN_MODIFY
[2023/03/01 02:57:18] [debug] [input chunk] update output instances with new chunk size diff=498
[2023/03/01 02:57:20] [debug] [out flush] cb_destroy coro_id=1
[2023/03/01 02:57:20] [debug] [task] task_id=0 reached retry-attempts limit 1/1
[2023/03/01 02:57:20] [ warn] [engine] chunk '160736-1677657428.68841546.flb' cannot be retried: task_id=0, input=tail.0 > output=syslog.0
[2023/03/01 02:57:20] [debug] [task] destroy task=0x7f302d042460 (task_id=0)
[2023/03/01 02:57:22] [debug] [task] created task=0x7f302d042460 id=0 OK
[2023/03/01 02:57:22] [debug] [out flush] cb_destroy coro_id=2
[2023/03/01 02:57:22] [debug] [retry] new retry created for task_id=0 attempts=1
[2023/03/01 02:57:22] [ warn] [engine] failed to flush chunk '160736-1677657438.68919813.flb', retry in 8 seconds: task_id=0, input=tail.0 > output=syslog.0 (out_id=0)
[2023/03/01 02:57:28] [debug] [input:tail:tail.0] inode=33555337 events: IN_MODIFY
[2023/03/01 02:57:28] [debug] [input chunk] update output instances with new chunk size diff=499
[2023/03/01 02:57:30] [debug] [out flush] cb_destroy coro_id=3
[2023/03/01 02:57:30] [debug] [task] task_id=0 reached retry-attempts limit 1/1
[2023/03/01 02:57:30] [ warn] [engine] chunk '160736-1677657438.68919813.flb' cannot be retried: task_id=0, input=tail.0 > output=syslog.0
[2023/03/01 02:57:30] [debug] [task] destroy task=0x7f302d042460 (task_id=0)
[2023/03/01 02:57:32] [debug] [task] created task=0x7f302d042460 id=0 OK
[2023/03/01 02:57:32] [debug] [out flush] cb_destroy coro_id=4
[2023/03/01 02:57:32] [debug] [retry] new retry created for task_id=0 attempts=1
[2023/03/01 02:57:32] [ warn] [engine] failed to flush chunk '160736-1677657448.68730305.flb', retry in 10 seconds: task_id=0, input=tail.0 > output=syslog.0 (out_id=0)
[2023/03/01 02:57:37] [debug] [input:tail:tail.0] inode=33555337 events: IN_MODIFY
[2023/03/01 02:57:37] [debug] [input chunk] update output instances with new chunk size diff=3245
[2023/03/01 02:57:38] [debug] [input:tail:tail.0] inode=33555337 events: IN_MODIFY
[2023/03/01 02:57:38] [debug] [input chunk] update output instances with new chunk size diff=499
[2023/03/01 02:57:42] [debug] [task] created task=0x7f302d0424d0 id=1 OK
[2023/03/01 02:57:42] [debug] [out flush] cb_destroy coro_id=5
[2023/03/01 02:57:42] [debug] [out flush] cb_destroy coro_id=6
[2023/03/01 02:57:42] [debug] [task] task_id=0 reached retry-attempts limit 1/1
[2023/03/01 02:57:42] [ warn] [engine] chunk '160736-1677657448.68730305.flb' cannot be retried: task_id=0, input=tail.0 > output=syslog.0
[2023/03/01 02:57:42] [debug] [task] destroy task=0x7f302d042460 (task_id=0)
[2023/03/01 02:57:42] [debug] [retry] new retry created for task_id=1 attempts=1
[2023/03/01 02:57:42] [ warn] [engine] failed to flush chunk '160736-1677657458.763485.flb', retry in 8 seconds: task_id=1, input=tail.0 > output=syslog.0 (out_id=0)
=========================================================================
Am I missing any configurations or anything missing here? Please Help.
Beta Was this translation helpful? Give feedback.
All reactions