安装Filebeat 7.17.5

DevOps ELK评论1,910字数 1883阅读6分16秒阅读模式

install Filebeat

下载

[centos@us-prod-ops-logan-2 app]$ pwd
/data/app
[centos@us-prod-ops-logan-2 app]$ wget https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-7.17.5-linux-x86_64.tar.gz
[centos@us-prod-ops-logan-2 app]$ tar zxf filebeat-7.17.5-linux-x86_64.tar.gz
[centos@us-prod-ops-logan-2 app]$ cd filebeat-7.17.5-linux-x86_64
[centos@us-prod-ops-logan-2 filebeat-7.17.5-linux-x86_64]$ mkdir config
[centos@us-prod-ops-logan-2 filebeat-7.17.5-linux-x86_64]$ cd config/

配置filebeat

[centos@us-prod-ops-logan-2 config]$ cat filebeat.yml 
filebeat.inputs:     #收集日志
- type: log         #类型
  enabled: true     #始终收集
  paths:
    - /data/logs/logan-server/error.log
    - /data/logs/logan-server/info.log
  fields:
    type: 'ops-logan'

  multiline.type: pattern
  multiline.pattern: '^\['
  multiline.negate: true
  multiline.match: after
  multiline.timeout: 3s
  ignore_older: 24h


processors:
  - drop_fields:
      fields: ["agent","metadata","sort","beat","input_type","offset","input","prospector"]


setup.ilm.enabled: false
setup.template.settings:
  index.number_of_shards: 3
  index.number_of_replicas: 1

output.elasticsearch:
  hosts: ["10.0.3.174:9200"]
  protocol: http

  username: "elastic"
  password: "root2758!@@"

  indices:
    - index: "ops-logan-%{+yyyy.MM.dd}"
      when.equals:
        fields.type: 'ops-logan'

启动filebeat

[centos@us-prod-ops-logan-2 filebeat-7.17.5-linux-x86_64]$ pwd
/data/app/filebeat-7.17.5-linux-x86_64
[centos@us-prod-ops-logan-2 filebeat-7.17.5-linux-x86_64]$ ./filebeat -c config/filebeat.yml &
[1] 1414

查看es数据

安装Filebeat 7.17.5

启动脚本

vim /usr/lib/systemd/system/filebeat.service
[Unit]
Description=filebeat server daemon
Documentation=/data/app/filebeat-7.17.4-linux-x86_64/filebeat -help
Wants=network-online.target
After=network-online.target

[Service]
User=centos
Group=centos
Environment="BEAT_CONFIG_OPTS=-c /data/app/filebeat-7.17.4-linux-x86_64/config/filebeat.yml"
ExecStart=/data/app/filebeat-7.17.4-linux-x86_64/filebeat $BEAT_CONFIG_OPTS
Restart=always

[Install]
WantedBy=multi-user.target

启动服务

systemctl daemon-reload
systemctl restart filebeat.service

继续阅读
ELK最后更新:2022-8-25
DevOps
  • 本文由 发表于 2022年7月12日 10:44:46
  • 除非特殊声明,本站文章均为原创,转载请务必保留本文链接
  • Filebeat
Filebeat ELK

Filebeat

启动脚本 cd /lib/systemd/system vim filebeat.service [Unit] Description=filebeat server daemon Docu...
EFK集群[案例] ELK

EFK集群[案例]

Elasticsearch集群配置信息 硬件配置信息 机器名/节点名 IP 内存 cpu 磁盘 us...
评论  0  访客  0

发表评论