本文主要是介绍centos7 部署filebeat,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
先决条件参考
虚拟机部署elasticsearch集群-CSDN博客
下载并安装filebeat的rpm包
curl -L -O https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-7.17.18-x86_64.rpmrpm -vi filebeat-7.17.18-x86_64.rpm
修改配置文件
mkdir /etc/filebeat/configcat > /etc/filebeat/config/01-stdin-to-console.yml <<'EOF'
# 指定输⼊的类型
filebeat.inputs:
# 指定输⼊的类型为"stdin",表示标准输⼊
- type: stdin
# 指定输出的类型
output.console:# 打印漂亮的格式pretty: true
EOF#启动filebeat
filebeat -e -c /etc/filebeat/config/01-stdin-to-console.yml
说明一下,这里只使用了标准输入形式和命令行终端输出形式作为filebeat的输入输出,更多的输入输出选择可以参考官方文档.
Repositories for APT and YUM | Filebeat Reference [7.17] | Elastic
其中的Configure 中有inputs 和output类型可供选择,根据不同的情况配置不同的类型即可.
这篇关于centos7 部署filebeat的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!