fluent-plugin-record-modifier icon indicating copy to clipboard operation
fluent-plugin-record-modifier copied to clipboard

Fluentd filter plugin for modifying each event record

Results 25 fluent-plugin-record-modifier issues
Sort by recently updated
recently updated
newest added

``` #TargetUserName and TargetDomainName @type record_modifier remove_keys _dummy_ _dummy_ ${if record['TargetUserName'] and record['TargetDomainName']; record['TargetDomainUserName'] = "${record['TargetUserName']}\${record['TargetDomainName']}"; end; nil} ``` Shows --> "TargetDomainUserName":"Hello#{record['TargetDomainName']}" ``` "${record['TargetUserName']}\\${record['TargetDomainName']}" ``` Shows -> "TargetDomainUserName":"Hello\\\World" So there...

In the message i have \u0006 which is a tab. I can see `char_encoding` but unable to find something similar to decoding.

Hi there, how to create json formatted output like this: ``` { "data": { "body": { "message": { "body": "Hello, world!" } } } } ``` Thanks, Andrey

If an expression failes in expand() a backtrace to expand is logged in fluentd.log. This patch loggs the failed expression as well.

Whether to replace a key or not if already in the record. Defaults to true to preserve compatibility Use case: I use the record modifier filter to add an hostname...

enhancement