fluent-plugin-input-jsonstream

Build Status Gem Version

Overview

A streaming JSON input for Fluentd.

Configuration

Accept chunked JSON objects via TCP

<source>
  @type jsonstream
  tag example.jsonstream
  bind 127.0.0.1
  port 12345
</source>

<match example.jsonstream>
  type stdout
</match>