filebeat 配置新日志流程记录文档

背景:

在网上看过filebeat的很多文档,可能因为时间原因或者filebeat使用者较少吧,总之不能满足我的需求,所以记录下,希望能帮到有需要的人吧.奥力给!

一共分为两部分 第一部分为基础说明,第二部分为真实演示流程,第三部分为碰到过的问题收集

一 基础说明:

1 下载安装filebeat,可以看之前的记录
2 默认配置文件为filebeat.reference.yml,正式使用配置文件为filebeat.yml
3 配置文件基础解读:

filebeat.inputs:

# Each - is an input. Most options can be set at the input level, so
# you can use different inputs for various configurations.
# Below are the input specific configurations.
#每收集一个日志,需要配置一个type
- type: log
  enabled: true
  paths:
   - /home/work/dsp/log/webserver/access_log #日志路径
  fields:
     type: "php-nginx-access" #自定义字段
  close_renamed: true #日志替换名字时,停止采集
  close_removed: true #日志移动时.停止采集
  scan_frequency: 10s #频率 10s去检测日志更新
#整块注释如上#
- type: log
  enabled: true
  paths:
   - /home/work/dsp/log/service/service.log
  fields:
     type: "service-log"
  close_renamed: true
  close_removed: true
  scan_frequency: 10s
#整块注释如上#

#- type: log
#  enabled: true
#  paths:
#   - /home/work/dsp/log/webserver/error_log.2019111217
#  fields:
#     type: "nginx-error"

#============================= Filebeat modules ===============================

filebeat.config.modules:
  # Glob pattern for configuration loading
  path: ${path.config}/modules.d/*.yml

  # Set to true to enable config reloading
  reload.enabled: false

  # Period on which files under path should be checked for changes
  #reload.period: 10s

#==================== Elasticsearch template setting ==========================
#setup.template.settings:
#  index.number_of_shards: 3
  #index.number_of_replicas: 2
 # index:
  #  number_of_shards: 3
    #    #codec: best_compression
    #        #number_of_routing_shards: 30

#setup.template.settings:
  #index.number_of_shards: 3
  #index.codec: best_compression
  #_source.enabled: false

#============================== Kibana =====================================

# Starting with Beats version 6.0.0, the dashboards are loaded via the Kibana API.
# This requires a Kibana endpoint configuration.
setup.kibana:
    host: "10.19.145.2:5601"
    username: "YouName"
    password: "YourPassword"
  # Kibana Host


#-------------------------- Elasticsearch output ------------------------------
setup.ilm.enabled: false

setup.template.name: "php-nginx" # 给咱的模板起个名字,随便喊
setup.template.pattern: "php-nginx-*" #调取的正则名称
setup.template.settings: # 配置生成索引的分片与副本数
  index.number_of_shards: 3
  index.number_of_replicas: 1

setup.template.overwrite: true
setup.template.enabled: true

setup.template.name: "php-service"
setup.template.pattern: "php-service-*"
setup.template.settings:
  index.number_of_shards: 3
  index.number_of_replicas: 1

setup.template.overwrite: true
setup.template.enabled: true
#es 集群配置
output.elasticsearch:
  hosts: ["ip1:9200", "ip2.15:9200", "ip3:9200"]
  username: "youName"
  password: "YouPassword"
  index: "php-nginx-%{+yyyy.MM.dd}"
  indices:
    - index: "php-nginx-%{+yyyy.MM.dd}"
      when.equals:
        fields.type: "php-nginx-access"
    - index: "php-service-%{+yyyy.MM.dd}"
      when.equals:
        fields.type: "service-log"
  pipelines:
    - pipeline: "php-nginx-access"
      when.equals:
        fields.type: "php-nginx-access"
    - pipeline: "service-log"
      when.equals:
        fields.type: "service-log"
  


processors:
  - add_host_metadata: ~
  - add_cloud_metadata: ~

二 真实演示流程:

完整流程举例: 添加nginx接入层日志采集
1 在filebeat.yml 添加type

- type: log
  enabled: true
  paths:
   - /home/work/nginx/logs/access_log
  fields:
     type: "nginx-access"
  close_renamed: true
  close_removed: true
  scan_frequency: 10s
  exclude_lines: ['\/static\/img\/', '\/static\/js\/', '\/static\/css\/', '\/static\/fonts\/'] #目的是为了过滤css,js等你想过滤的东西

2 在filebeat.yml 添加template

setup.template.overwrite: true
setup.template.name: "nginx-flow"
setup.template.pattern: "nginx-flow-*"
setup.template.fields: ${path.config}/nginx-template.yml
setup.template.enabled: false

3 构建es管道

PUT _ingest/pipeline/nginx-flow
参数为:
{
  "nginx-access" : {
    "description" : "nginx-flow",
    "processors" : [
      {
        "grok" : {
          "ignore_failure" : true,
          "field" : "message",
          "patterns" : [
            """%{IPV4:remote_addr_ip} - (%{USERNAME:user_name}|-) \[%{HTTPDATE:log_timestamp:date}\] \"(?<method>[A-Z]+) (?<request_uri>[\s\S]*) (?<proto>[A-Za-z]+([A-Za-z0-9+\-./]+)+)\" (?<status>\d+) (?<body_size>\d+) \"(?<refer>(.*?))\" \"(?<cookie>(.*?))\" \"(?<user_agent_info>(.*?)*)\" %{NUMBER:cost_time} %{IPV4:remote_addr} %{IPV4:server_addr} (?<sock_path>[a-z0-9\.]+:(/?[a-z0-9\-]+)+(\.sock)?|-) (?<service_name>[a-z\d\.]+) \"(?<forwarded_foo>(.*?))\" (?<log_id>[\w\-]*) (?<log_id>[\w\-]*) %{NUMBER:time} %{NUMBER:time}"""
          ]
        }
      },
      {
        "date" : {
          "ignore_failure" : true,
          "field" : "log_timestamp",
          "formats" : [
            "dd/MMM/yyyy:HH:mm:ss Z"
          ],
          "timezone" : "Asia/Shanghai"
        }
      }
    ]
  }
}

4 在filebeat.yml 添加索引与es管道配置

output.elasticsearch:
  hosts: ["ip1:9200", "ip2:9200", "ip3:9200"]
  username: "YouName"
  password: "YouPassword"
  index: "php-nginx-%{+yyyy.MM.dd}"
  indices:
    - index: "php-nginx-%{+yyyy.MM.dd}"
      when.equals:
        fields.type: "php-nginx-access"
    - index: "php-service-%{+yyyy.MM.dd}"
      when.equals:
        fields.type: "service-log"
    #在原有配置上的新增行1 start ###
    - index: "nginx-flow-%{+yyyy.MM.dd}"
      when.equals:
        fields.type: "nginx-access"
     #在原有配置上的新增行1 end ###
  pipelines:
    - pipeline: "php-nginx-access"
      when.equals:
        fields.type: "php-nginx-access"
    - pipeline: "service-log"
      when.equals:
        fields.type: "service-log"
      #在原有配置上的新增行2 start ###
    - pipeline: "nginx-access"
      when.equals:
        fields.type: "nginx-access"
    #在原有配置上的新增行2 end ###

5 重启filebeat服务

supervisorctl restart filebeat
# 或者
./filebeat -c filebeat.yml  -e -d '*'

三 碰到过的问题:

1 es 集群 cpu负载过高,集群内每个节点的cpu负载都接近100%
解决手段: 1 在es管道配置中新增如下图1中标红参数.
2 调整es的jvm gc参数,如下图2中

1.png
2.png

2 当采集日志数量>=2时,filebeat设置es索引分片与副本数失败
解决手段: 采集日志数量>=2时,es的分片与副本数量收集需要在不同的模板下分别设置,否则会使设置参数失效.如下图所示:

3.png

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,864评论 6 494
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,175评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,401评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,170评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,276评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,364评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,401评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,179评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,604评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,902评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,070评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,751评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,380评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,077评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,312评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,924评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,957评论 2 351

推荐阅读更多精彩内容