码迷,mamicode.com
首页 > 其他好文 > 详细

ELK之filebeat-redis-logstash-es构架模式

时间:2018-06-15 00:01:45      阅读:900      评论:0      收藏:0      [点我收藏+]

标签:python   alt   false   原因   ble   .com   number   构架   没有   

  下载filebeat的rpm包安装filebeat

wget https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-6.3.0-x86_64.rpm

  安装

filebeat-6.3.0-x86_64.rpm

  配置文件/etc/filebeat/filebeat.yml 

技术分享图片

技术分享图片

  写一个配置文件

filebeat.inputs:
- type: log
  enabled: true
  paths:
    - /var/log/*.log
    - /var/log/messages
  
  exclude_lines: [‘^DBG‘,‘^$‘]
  document_type: system-log-5611
filebeat.config.modules:
  path: ${path.config}/modules.d/*.yml
  reload.enabled: false
setup.template.settings:
  index.number_of_shards: 3
setup.kibana:
output.file:
  path: "/tmp"
  name: "filebeat.txt"

技术分享图片

  默认不带type这里自定义type为document_type: system-log-5611

  排除空行exclude_lines: [‘^DBG‘,‘^$‘]

  这里不写入到elasticsearch而是先写入到一个文件

  启动

systemctl start filebeat

  PS:在/tmp下面生成了文件filebeat但是没有txt(原因未知)

  未完待续。。。20

 

ELK之filebeat-redis-logstash-es构架模式

标签:python   alt   false   原因   ble   .com   number   构架   没有   

原文地址:https://www.cnblogs.com/minseo/p/9185423.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!