Fluent 编解码器插件
编辑Fluent 编解码器插件
编辑- 插件版本:v3.4.3
- 发布于:2024-06-25
- 更新日志
有关其他版本,请参阅版本化插件文档。
获取帮助
编辑有关插件的问题,请在 Discuss 论坛中开启一个主题。对于错误或功能请求,请在 Github 中开启一个 issue。有关 Elastic 支持的插件列表,请查阅Elastic 支持矩阵。
描述
编辑此编解码器处理 fluentd 的 msgpack 模式。
例如,您可以使用以下方法从 fluent-logger-ruby
接收日志
input { tcp { codec => fluent port => 4000 } }
并在您自己的应用程序的 ruby 代码中
logger = Fluent::Logger::FluentLogger.new(nil, :host => "example.log", :port => 4000) logger.post("some_tag", { "your" => "data", "here" => "yay!" })
Fluent 对事件使用秒精度,因此您不会看到此编解码器处理的事件的亚秒级精度。