简介
Filebeat是用于转发和集中日志数据的轻量级传送工具。Filebeat监视您指定的日志文件或位置,收集日志事件,并将它们转发到Elasticsearch或 Logstash进行索引。
网址:https://www.elastic.co/cn/beats/filebeat
环境情况
- Java:1.8
- Filebeat:6.8.13
- 操作系统:centos7
- IP:192.168.43.128
版本匹配
网址:https://www.elastic.co/cn/support/matrix#matrix_compatibility
安装Filebeat
网址:https://www.elastic.co/cn/downloads/past-releases#filebeat
1 | cd /data/temp |
查询filebeat的安装目录:
1 | whereis filebeat |
显示:
filebeat: /usr/bin/filebeat /etc/filebeat /usr/share/filebeat
修改配置:
1 | cp /etc/filebeat/filebeat.yml /etc/filebeat/filebeat.yml_bak |
收集tomcat的日志,内容如下:
1 | filebeat.inputs: |
启动:
1 | systemctl start filebeat |
停止:
1 | systemctl stop filebeat |