二进制部署
部署
# https://www.elastic.co/downloads/past-releases/filebeat-7-17-5
cd /elk/software/filebeat/
wget https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-7.17.5-linux-x86_64.tar.gz
tar xf filebeat-7.17.5-linux-x86_64.tar.gz
cd filebeat-7.17.5-linux-x86_64
ln -svf $(pwd)/filebeat /usr/local/bin/
filebeat -h配置
案例 - stdin
# mkdir config
# vim config/01-stdin-to-console.yaml
filebeat.inputs:
- type: stdin
output.console:
pretty: true案例 - tcp
案例 - log
启动实例
Last updated