Repository is archived
No commit activity in last 3 years
No release in over 3 years
MessagePack parser for Fluentd
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.9
~> 10.0

Runtime

 Project Readme

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?