第一个月嘿,伙计们,上面的日志是我通过fluentd传递给Elasticsearch的。我需要能够过滤“private_token:“,并确保将其删除或替换为其他内容,使其看起来像这样。“http://test.com/private_token=##'"或FluentD的实际值以外的任何内容。
rpppsulh1#
当我想屏蔽密码时,我在fluentd conf文件中添加了一个带有以下conf的过滤器。
<filter **> @type record_transformer enable_ruby <record> message ${record["message"].gsub(/[Pp]assword*([^,])/,'****')} </record> </filter>
字符串
1条答案
按热度按时间rpppsulh1#
当我想屏蔽密码时,我在fluentd conf文件中添加了一个带有以下conf的过滤器。
字符串