简体   繁体   中英

How to set up elasticsearch and filebeat

I have installed elasicsearch and filebeat.

The filebeat config:

output.elasticsearch:
  hosts: ["https://myElastic:9200"]
  username: "user"
  password: "password"

Could you please tell me, do I need to configure something in elasticsearch. The problem that I have now is that I do not see data from filebeat in elasticsearch.

your filebeat config should have input lines.

filebeat.yml :

filebeat.inputs:
- type: log
  enabled: true
  paths:
    - /mylog/*.log

output.elasticsearch:
  hosts: ["https://myElastic:9200"]
  username: "user"
  password: "password"

and I recommend you use logstash with filebeat. You can find how to config it easily in below github repository.

docker-compose config : ELK with Filebeat by Docker-compose

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM