LoongCollector

1758
下载
LoongCollector 源自阿里云可观测性团队所开源的 iLogtail 项目,在继承了 iLogtail 强大的日志采集与处理能力的基础上,进行了全面的功能升级与扩展。从原来单一日志场景,逐步扩展为可观测数据采集、本地计算、服务发现的统一体。 LoongCollector 是一款集卓越性能、超强稳定性和灵活可编程性于一身的数据采集器,专为构建下一代可观测 Pipeline 设计。愿景是:打造业界领先的“统一可观测 Agent(Unified Observability Agent)”与“端到端可观

脱敏


简介

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