iLogtail

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

添加字段


简介

processor_add_fields processor插件可以添加日志字段。

版本

Stable

配置参数

参数类型是否必选说明
TypeString插件类型。
FieldsMap待添加字段和字段值。键值对格式,支持添加多个。
IgnoreIfExistBoolean当Key相同时是否忽略。如果未添加该参数,则默认使用false,表示不忽略。

样例

采集/home/test-log/路径下的test.log文件,并添加字段service: A用于标识日志所在服务。

  • 输入
Terminal window
echo 'this is a test log' >> /home/test-log/test.log
  • 采集配置
enable: true
inputs:
- Type: input_file
FilePaths:
- /home/test-log/*.log
processors:
- Type: processor_add_fields
Fields:
service: A
IgnoreIfExist: false
flushers:
- Type: flusher_stdout
OnlyStdout: true
  • 输出
{
"__tag__:__path__": "/home/test_log/key_value.log",
"content": "this is a test log",
"service": "A",
"__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