Skip to content

AlexisRodet/fluent-plugin-filter_codec

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Example :

<match test>
    type filter_codec
    add_tag_prefix decoded.
    codec base64-decode
    field key1
    output_field key2
</match>

Example of records :

{
    'key1' => "Tmljb2xhcyBDYWdl",
    'foo' => "bar"
}

... will output (unchanged) :

{
    'key1' => "Nicolas Cage",
    'foo' => "bar"
}

You can omit 'output_field' so 'field' value will be replaced by output value.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 100.0%