mattgruter/logstash

By mattgruter

Updated almost 8 years ago

Image
0

1.7K

Docker images for the ELK stack

Run the ELK stack, the end-to-end search and analytics platform.

(ELK stands for Elasticsearch, Logstash and Kibana)

Images on the Docker Hub:

Getting started

To run the ELK stack do:

docker run -d --name es elasticsearch
docker run -d --link es:elasticsearch -p 4560:4560 mattgruter/logstash
docker run -d --link es:elasticsearch -p 8080:8080 mattgruter/kibana

Now point your browser at http://localhost:8080 and send data to tcp://localhost:4560.

Fig

If you use fig you can bulid and start all containers with:

fig up

Or if you don't want to build the images yourself and use the prebuild images from the Docker Hub:

fig -f fig.prod.yml up

And point your browser at http://localhost:8080 and send data to tcp://localhost:4560.

Docker Pull Command

docker pull mattgruter/logstash