Skip to content
This repository was archived by the owner on May 20, 2022. It is now read-only.

Latest commit

 

History

History
33 lines (25 loc) · 1011 Bytes

File metadata and controls

33 lines (25 loc) · 1011 Bytes

Fluent::TextParser::MsgPackParser

MessagePack parser for Fluentd. Useful for Inputs that don't support this format, namely in_udp, in_tcp and in_tail

Installation

Please check Plugin management docs

Usage

Example configuration

<source>
  @type udp
  port 12201
  tag system
  format msgpack
</source>

Wire protocol

The parser is wire protocol agnostic, meaning it will just yield whatever is fed to it, assuming it's a valid MessagePack string.

Contributing

  1. Fork it ( https://github.com/bitex-la/fluent-plugin-msgpack-parser/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

TODO

  • Specs?