Filebeat提供了几种不同的方式来启用模块:
- 在
modules.d
编辑目录中启用模块配置 - 运行Filebeat 编辑时启用模块
- 在
filebeat.yml
文件编辑中启用模块配置
例如,要在 目录中启用apache2
和mysql
配置modules.d
,请使用:
./filebeat modules enable apache2 mysql
然后,当您运行Filebeat时,会加载modules.d
目录中指定的相应模块配置
要查看启用和禁用模块的列表,请运行:
./filebeat modules list
要在命令行运行Filebeat时启用特定的模块,可以使用该--modules
标志。
./filebeat -e --modules nginx,mysql,system
要启用filebeat.yml
配置文件中的特定模块,可以将条目添加到filebeat.modules
列表中。
filebeat.modules: - module:nginx - module:mysql - module:system