我正在使用 Fluentd 进行日志收集和转发。通常,我为此使用尾部输入法。但我有一个关于长线的问题。我想忽略长行而不是字节的特定大小。
例如,如果该行大于 32kb,则忽略它。Fluentd 有解决方案吗?
这是我的流利配置;
<system>
log_level warn
</system>
# Nginx Logs
<source>
@type tail
path /var/log/nginx/access.json.log
path_key file
pos_file /tmp/td-agent/pos/nginx.pos
read_lines_limit 1000
tag nginx.log
<parse>
@type json
time_key time_local
time_type string
time_format "%d/%b/%Y:%H:%M:%S %z"
</parse>
</source>
<match>
@type stdout
</match>