Sha256: 62afd55ef799b1895881412bc0c5dc41df2f1605be1ee6c9377b703dae1402b4
Contents?: true
Size: 1.85 KB
Versions: 1
Compression:
Stored size: 1.85 KB
Contents
# fluent-plugin-concat [![Build Status](https://travis-ci.org/okkez/fluent-plugin-concat.svg?branch=master)](https://travis-ci.org/okkez/fluent-plugin-concat) Fluentd Filter plugin to concatenate multiline log separated in multiple events. ## Installation Add this line to your application's Gemfile: ```ruby gem 'fluent-plugin-concat' ``` And then execute: $ bundle Or install it yourself as: $ gem install fluent-plugin-concat ## Configuration **key** (required) The key for part of multiline log. **separator** The separator of lines. Default value is `"\n"`. **n\_lines** The number of lines. This is exclusive with `multiline_start_regex`. **multiline\_start\_regexp** The regexp to match beginning of multiline. This is exclusive with `n_lines.` **multiline\_end\_regexp** The regexp to match ending of multiline. **stream\_identity\_key** The key to determine which stream an event belongs to. **flush\_interval** The number of seconds after which the last received event log will be flushed. ## Usage Every 10 events will be concatenated into one event. ```aconf <filter docker.log> @type concat key message n_lines 10 </filter> ``` Specify first line of multiline by regular expression. ```aconf <filter docker.log> @type concat key message multiline_start_regexp /^Start/ </filter> ``` You can handle timeout events and remaining buffers on shutdown this plugin. ```aconf <label @ERROR> <match docker.log> @type file path /path/to/error.log </match> </label> ``` ## 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 ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-concat-0.5.0 | README.md |