其他分享
首页 > 其他分享> > 浅尝 Elastic Stack (五) Logstash + Beats + Kafka

浅尝 Elastic Stack (五) Logstash + Beats + Kafka

作者:互联网

Elasticsearch、Kibana、Beats 安装 中讲到推荐架构:

本文基于 Logstash + Beats 读取 Spring Boot 日志 将其改为上述架构

如果没有安装 Kafka 需要首先安装:http://kafka.apache.org/quickstart ,如果需要后台运行添加 -daemon 即可

一、FileBeat

修改 output

output.kafka:
  hosts: ["localhost:9092"]
  topic: demo

二、Logstash

修改 input

input {
  kafka {
    bootstrap_servers => "localhost:9092"
    topics => "demo"
  }
}

标签:Elastic,demo,9092,kafka,浅尝,Beats,input,Logstash
来源: https://www.cnblogs.com/victorbu/p/13048847.html