公共参数

最后更新于:2022-04-02 03:01:22

[TOC] ## @type 指定插件 ``` @type my_plugin_type @type my_filter ``` ## @id - @id 参数为配置指定一个唯一的名称。它用作缓冲、存储、日志记录和其他用途的路径。 - 应该为所有插件指定此参数,以全局启用root_dir和worker功能。 ``` @type file @id service_www_accesslog path /path/to/my/access.log # ... ``` ## @log_level - 此参数指定插件特定的日志记录级别。默认日志级别是 info - 通过 system 设置全局日志级别 ``` log_level info # ... @log_level debug # shows debug log only for this plugin ``` ## @label ``` @type ... @label @access_logs # ... @type ... @label @system_metrics # ... ```
';