Skip to content

shao1555/fluent-plugin-unwind

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fluent-plugin-unwind

Synopsis

<match app.event_log.purchase>
  type unwind
  output_tag app.unwind_event_log.purchase
  unwind_key item_id
</match>

<match app.unwind_event_log.purchase>
  type stdout
</match>

This rules will be applived like below:

{ "user_id": 1, "item_id": [ 100, 101, 102 ] }

will be extracted to

{ "user_id": 1, "item_id": 100 }
{ "user_id": 1, "item_id": 101 }
{ "user_id": 1, "item_id": 102 }

Installation

Add this line to your application's Gemfile

gem 'fluent-plugin-unwind'

Copyright

Copyright (C) 2014 Bitcellar, Inc. / Sho SAWADA

License

MIT License

About

A fluentd plugin that unwind array to multiple items.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages