[root@elk02 kafka]# cat ~/config/04-log-to-console.yml #指定输入类型 filebeat.inputs: ###指定输入的类型为“stdin”,表示标准输入 - type: log enabled: false paths: - /tmp/test.log - /tmp/*.log - type: log enabled: true paths: - /tmp/test/*/*.txt ########指定输出类型: output.console: #打印漂亮的格式: pretty: true [root@elk02 kafka]# [root@elk02 kafka]# cat ~/config/04-log-to-console.yml #指定输入类型 filebeat.inputs: ###指定输入的类型为“stdin”,表示标准输入 - type: log enabled: false paths: - /tmp/test.log - /tmp/*.log tags: ["昨天是美好的一天"] - type: log enabled: true paths: - /tmp/test/*/*.txt tags: ["昨天是美好的一天"] ########指定输出类型: output.console: #打印漂亮的格式: pretty: true
标签:tmp,paths,插件,console,log,通用字,filebeat,test,input From: https://www.cnblogs.com/cherishthepresent/p/17981913