ELK Stack is comprised of 3 core services:
We have created separate dockerfiles for each of these services, making it easier to build and deploy the services independently.
To build the Elasticsearch container:
$ cd elasticsearch; make build && make run
To build the Logstash container:
$ cd logstash; make build && make run
To build the Kibana container:
$ cd kibana; make build && make run
Now that we have elk stack setup we need to start sending it some log files to process. We've provided a logstash-forwarder container that can be deployed on any host that has log files which you would like to have processed.
To build the Loststash-forwarder container
$ cd logstash-forwarder; make build && make run