iLogtail

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

丢弃字段


简介

processor_drop processor插件可以丢弃日志字段。

版本

Stable

配置参数

参数类型是否必选说明
TypeString插件类型。
DropKeysString[]指定待丢弃的字段,支持配置多个。

样例

采集/home/test-log/路径下的json.log文件,并按照Json格式进行日志解析,然后对解析后的字段进行丢弃。

  • 输入
Terminal window
echo '{"key1": 123456, "key2": "abcd"}' >> /home/test-log/json.log
  • 采集配置
enable: true
inputs:
- Type: input_file
FilePaths:
- /home/test-log/*.log
processors:
- Type: processor_json
SourceKey: content
KeepSource: false
ExpandDepth: 1
ExpandConnector: ""
- Type: processor_drop
DropKeys:
- key1
flushers:
- Type: flusher_stdout
OnlyStdout: true
  • 输出
{
"__tag__:__path__": "/home/test-dir/test_log/json.log",
"key2": "abcd",
"__time__": "1657354602"
}

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