@@ -8,33 +8,33 @@ class Plugin::RecordModifierFilter < Plugin::Filter
88 desc : <<-DESC
99Prepare values for filtering in configure phase. Prepared values can be used in <record>.
1010You can write any ruby code.
11- DESC
11+ DESC
1212 config_param :char_encoding , :string , default : nil ,
1313 desc : <<-DESC
1414Fluentd including some plugins treats the logs as a BINARY by default to forward.
1515But an user sometimes processes the logs depends on their requirements,
1616e.g. handling char encoding correctly.
1717In more detail, please refer this section:
1818https://github.com/repeatedly/fluent-plugin-record-modifier#char_encoding.
19- DESC
19+ DESC
2020 config_param :remove_keys , :string , default : nil ,
2121 desc : <<-DESC
2222The logs include needless record keys in some cases.
2323You can remove it by using `remove_keys` parameter.
2424This option is exclusive with `whitelist_keys`.
25- DESC
25+ DESC
2626
2727 config_param :whitelist_keys , :string , default : nil ,
2828 desc : <<-DESC
2929Specify `whitelist_keys` to remove all unexpected keys and values from events.
3030Modified events will have only specified keys (if exist in original events).
3131This option is exclusive with `remove_keys`.
32- DESC
32+ DESC
3333
3434 config_param :replace , :bool , default : false ,
3535 desc : <<-DESC
3636Boolean flag to enable replace function. Default is false.
37- DESC
37+ DESC
3838
3939 def configure ( conf )
4040 super
0 commit comments