No commit activity in last 3 years
No release in over 3 years
Fluentd custom plugin to generate random values in tag
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

>= 0
 Project Readme

fluent-plugin-randomtag

Appends a random int to the start of a tag

How

You want to define :

  • Integer interval : integer (syntax is the Ruby range..syntax)

Examples

Example 0

<match *.test>
    type randomtag
    integer 15..100
</match>

Example of records :

logInput
{
    'foo' => "bar"
}

... can output :

1.logInput
{
    'foo' => "bar"
}