Repository is archived
No commit activity in last 3 years
No release in over 3 years
A fluentd filter plugin that will split period separated fields to nested hashes.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.11
~> 10.0

Runtime

< 0.15.0, >= 0.12.0
<= 1.1.0, >= 0.2.0
 Project Readme

Abandoned Project

NOTE: This project is no longer being maintained.

Fluent::Plugin::ExplodeFilter

This gem provides the explode Fluentd filter which is used to convert period separated fields to nested hashes.

The current use case being to expand Gelf formatted messages as well as to ensure compatibility with newer elasticsearch versions.

Requirements

  • Fluentd v0.12+
  • fluent-plugin-mutate_filter

Installation

gem install fluent-plugin-explode_filter

Configuration Options

<filter *>
  @type explode
</filter

Example

{
  "short_message": "a short message",
  "context.level": 5,
  "context.revision": "sha256"
}
{
  "short_message": "a short message",
  "context": {
    "level": 5,
    "revision": "sha256"
  }
}