filebeat 配置文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了filebeat 配置文件相关的知识,希望对你有一定的参考价值。

参考技术A filebeat.yml

filebeat.inputs:

- type: log

  enabled: true

  paths:

    - /app/cloud/logs/catalina.out

  fields:

    service: cloud26

  tail_files: true # 从文件尾开始监控文件新增内容

- type: log

  enabled: true

  paths:

  - /app/eduapi/logs/catalina.out

  fields:

    service: eduapi26

  tail_files: true

output.kafka:

  enabled: true 

  #codec.format:                # 默认json格式

  #  string: '%[message]'  # 只输原始日志格式

  hosts: ["192.168.130.159:9502","192.168.130.160:9502","192.168.130.159:9502"]

  topic: '%[fields][service]'

  partition.round_robin:

    reachable_only: false

  required_acks: 1

  compression: gzip

  max_message_bytes: 10000000

以上是关于filebeat 配置文件的主要内容,如果未能解决你的问题,请参考以下文章

filebeat 配置文件参数

filebeat配置文件

filebeat安装使用

Filebeat 核心配置详解

filebeat 配置文件详解

filebeat配置文件内容