Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 572 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 572 Bytes

fluent-plugin-input-gelf

Build Status Gem Version

Overview

A GELF compatible input for Fluentd.

Configuration

Accept GELF encoded messages over UDP

<source>
  type gelf
  tag example.gelf
  bind 127.0.0.1
  port 12201
</source>

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