iLogtail

1752
下载
iLogtail 是阿里云日志服务(Log Service)中的一款高性能、可扩展的日志采集工具。它被设计用于实时收集、解析和传输各类日志数据,支持多种数据源和复杂的日志处理场景,广泛应用于分布式系统、Web 服务器、应用程序等环境中的日志管理。

脱敏


简介

processor_filter_regex_native插件根据事件字段内容来过滤事件。

版本

Stable

配置参数

参数类型是否必填默认值说明
Typestring/插件类型。固定为processor_desensitize_native。
SourceKeystring/源字段名。
Methodstring/脱敏方式。可选值包括:
+ const:用常量替换敏感内容。
+ md5:用敏感内容的MD5值替换相应内容。
ReplacingStringstring否,当Method取值为const时必选/用于替换敏感内容的常量字符串。
ContentPatternBeforeReplacedStringstring/敏感内容的前缀正则表达式。
ReplacedContentPatternstring/敏感内容的正则表达式。
ReplacingAllbooltrue是否替换所有的匹配的敏感内容。

样例

采集文件/home/test-log/sen.log,将日志内容中的密码替换成******,并将结果输出到stdout。

  • 输入
{"account":"1812213231432969","password":"04a23f38"}
  • 采集配置
enable: true
inputs:
- Type: input_file
FilePaths:
- /home/test-log/reg.log
processors:
- Type: processor_desensitize_native
SourceKey: content
Method: const
ReplacingString: '******'
ContentPatternBeforeReplacedString: 'password":"'
ReplacedContentPattern: '[^"]+'
flushers:
- Type: flusher_stdout
OnlyStdout: true
  • 输出
{
"__tag__:__path__": "/home/test-log/reg.log",
"content": "{\"account\":\"1812213231432969\",\"password\":\"******\"}",
"__time__": "1657161810"
}

observability.cn Authors 2024 | Documentation Distributed under CC-BY-4.0
Copyright © 2017-2024, Alibaba. All rights reserved. Alibaba has registered trademarks and uses trademarks.
浙ICP备2021005855号-32