logstash-codec-protobuf
logstash-codec-protobuf copied to clipboard
Codec plugin for parsing Protobuf messages
Tested with - logstash-7.9.3 - logstash-codec-protobuf-1.2.2 _pb.rb ` require 'google/protobuf' Google::Protobuf::DescriptorPool.generated_pool.build do add_message "XX" do optional :timestamp, :int64, 1 map :map_string, :string, :string, 2 end end .......... ` will get...
Compiled .proto files with ruby-protoc sample.proto and used the same in logstash config. When using the plugin I get the error below. I have multiple definition files to add but...
From https://github.com/AlexJF/logstash-codec-protobuf/commit/1eaa88f75e3fd441cccd8a0707fbaed2d476f9e6 > When used with certain inputs that receive stream data (such as TCP), the default implementation of protobuf parsing sometimes fails silently leading to hard to debug data...
When using http input combined with protobuf codec I receive following error: `[WARN ][logstash.codecs.protobuf ] Couldn't decode protobuf: #.` with other proto `Couldn't decode protobuf: #` Tested with the very...