可以在不使用Fluentd执行序列化的情况下发送日志并维护其格式。
例如,我想发送apache日志并将它们存储在远程主机上而不将entires转换为JSON
我已检查过文件输出插件here,但我无法得到可靠的答案。
答案 0 :(得分:1)
您可以通过无解析器和single_value格式实现它。
http://docs.fluentd.org/articles/parser-plugin-overview#list-of-built-in-parsers http://docs.fluentd.org/articles/formatter-plugin-overview#list-of-built-in-formatters
答案 1 :(得分:0)
使用single_value
格式。
Message_key应该是您想要保留的原样。就我而言,它是日志。
<match *>
@type file
<format>
@type single_value
message_key log
</format>
</match>