5.0.0-rc1
,5.0.1
,5.0.2
,5.1.1
,5.1.2
,5.2.0
Docker image for Elastic Metricbeat
Providing your custom metricbeat.yml
under /metricbeat/metricbeat.yml
docker run -d \
-e ELASTICSEARCH_URL=http://elasticsearch:9200 \
-v /home/username/metricbeat.yml:/metricbeat/metricbeat.yml \
--name=metricbeat \
--pid=host \
athieriot/metricbeat
More details: https://www.elastic.co/guide/en/beats/metricbeat/5.x/running-in-container.html
docker run -d \
-v=/proc:/hostfs/proc:ro \
-v=/sys/fs/cgroup:/hostfs/sys/fs/cgroup:ro \
-volume=/:/hostfs:ro \
-v /home/username/metricbeat.yml:/metricbeat/metricbeat.yml \
athieriot/metricbeat -system.hostfs=/hostfs
For docker-compose example docker-compose-elasticsearch.yml
cp docker-compose-elasticsearch.yml docker-compose.yml
docker-compose up
Open kibana dashboard in your favorite browser http://localhost:5601/
docker-compose exec metricbeat sh -c './scripts/import_dashboards -es $ELASTICSEARCH_URL'
When Elasticsearch is launched inside a container it is inaccessible from another linked container. A configuration has to be set for it to work properly. Change IP as needed.
docker run --name=elasticsearch elasticsearch elasticsearch -Etransport.host=0.0.0.0
In order to pass the bootstrap checks you will also need to run that command on the host machine:
sysctl -q -w vm.max_map_count=262144
This program is licensed under an MIT license with an additional non-advertising clause. See LICENSE for the full text.