Reputation: 1654
I'm trying to understand use-cases when I should use filebeat with logstash. For instance, if logstash can read input local log files, do I need to use filebeat for that or only use logstash? My understanding that filebeat is useful when reading remote log files and send them to logstash server.
Upvotes: 0
Views: 62
Reputation: 16362
If you just have one machine for your application and are running logstash on it as well, you would not need filebeat. When you scale up to multiple app servers, then add it in.
Upvotes: 1