Skip to content

elk

Bash
docker-compose up -d

# Wait for about 30 seconds

docker-compose exec filebeat \
    filebeat setup \
    -strict.perms=false \
    -E setup.kibana.host=kibana:5601 \
    -E output.elasticsearch.hosts=["elasticsearch:9200"]

docker-compose exec metricbeat \
    metricbeat setup \
    -strict.perms=false \
    -E setup.kibana.host=kibana:5601 \
    -E output.elasticsearch.hosts=["elasticsearch:9200"]

Then visit http://localhost:5601/.