No commit activity in last 3 years
No release in over 3 years
Raw tcp output plugin for Fluentd
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

>= 0

Runtime

 Project Readme

Raw MsgPack for Fluentd

Used to chain fluentd -> logstash

Fluentd's out_forward plugin uses a custom serialization mechanism that prevents interaction with logstash (input tcp + msgpack codec).
This plugin implements a simple TCP forward, without heartbeats or any other out-of-band checks.

Installation

$ gem install fluent-plugin-out_rawtcp-godel

Usage

<match **>
  type rawtcp
  buffer_type file
  buffer_path /var/log/fluent/logcentral
  <server>
    name log1
    host 10.0.1.165
    port 24224
  </server>
</match>

Multiple <server> entries can be configured and logs will be sent to the first active one.

Acknowledgement

Inspired by fluentd's out_forward plugin by FURUHASHI Sadayuki