Skip to content

sonots/fluent-plugin-filter_dup

Repository files navigation

fluent-plugin-filter_dup

Build Status

A Fluentd sample filter plugin to duplicate messages

Requirements

Fluentd >= v0.12

Install

Use RubyGems:

gem install fluent-plugin-filter_dup

Configuration Example

<source>
  forward
</source>

<filter **>
  type dup
</filter>

<match **>
  type stdout
</match>

You should be able to see duplicated messages, try as:

$ echo '{"a":"foo","b":"bar"}' | fluent-cat raw.test

Parameters

None

ChangeLog

See CHANGELOG.md for details.

Contributing

  1. Fork it
  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 new Pull Request

Copyright

Copyright (c) 2014 Naotoshi Seo. See LICENSE for details.

Releases

No releases published

Packages

No packages published

Languages