Handle EventTime msgpack extension in logstash-codec-fluent

Hi all,
I'm tried to add new Fluentd v1.0/v0.14's EventTime msgpack protocol extension into logstash-codec-fluent.
It is already pull requested in https://github.com/logstash-plugins/logstash-codec-fluent/pull/18.

Current Status


Otherwise, it cannot handle EventTime extension included msgpack.

$ echo '{"current_version":"v0.14", "versions":{"unstable":0.14, "stable":0.12}}' | bundle exec fluent-cat my.logs

Logstash configuration:

input {
  tcp {
    codec => fluent
    port => 24224
  }
}
output {
  stdout { codec => json }
}

Result

Nothing output.

What is the next steps to support EventTime msgpack extension in logstash-codec-fluent?

Thanks.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.