No commit activity in last 3 years
No release in over 3 years
fluentd plugin: unwind array to multiple items
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0.9.2, ~> 0.9

Runtime

>= 0.10.39, ~> 0.10
 Project Readme

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