ELK Stack is one of the best distributed systems to centralize lots of servers' logs. Filebeat is a log shipper that keeps track of the given logs and pushes them to the Logstash. Then logstash outputs these logs to elasticsearch. I am not going to explain how to install ELK Stack but experiment about sending multiple log types (document_type) using filebeat log shipper to logstash server.
So there is one server (agent) filebeat and apache http server installed on it. Agent is going to send syslogs, http access logs and http error logs to Logstash.
Here is the contents of the /etc/filebeat/filebeat.yml config file:
There is one server (backend) logstash installed on it.
Here is the contents of the files located in the /etc/logstash directory:
conf.d/02-beats-input.conf
conf.d/10-syslog-filter.conf
conf.d/30-elasticsearch-output.conf
Comments
Post a Comment