GitHub - MerlinDMC/fluent-plugin-input-gelf: A GELF input for Fluentd

Skip to content

Navigation Menu

Sign in

Appearance settings

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Repository files navigation

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>