Open ScholliYT opened 4 years ago
The current Readme doesn't specify how to setup a Filebeat for pushing the logs from i.e. monolithic to logstash.
My current setup with lancachenet/docker-compose looks like this:
docker-compose.yml
filebeat: image: docker.elastic.co/beats/filebeat:7.9.1 volumes: - ${CACHE_ROOT}/logs:/data/logs - ./config/filebeat/filebeat.yml:/usr/share/filebeat/filebeat.yml
where ./config/filebeat/filebeat.yml is
./config/filebeat/filebeat.yml
name: "lancache" filebeat.inputs:
This sends the logs from the volume mounted into monolithic via filebeat to logstash where they get processed by the v7 pipeline from #10.
For anyone that comes across this in future - A sample setup with docker compose has been merged in now which should do this for you :)
The current Readme doesn't specify how to setup a Filebeat for pushing the logs from i.e. monolithic to logstash.
My current setup with lancachenet/docker-compose looks like this:
docker-compose.yml
of lancachenet/docker-compose to includewhere
./config/filebeat/filebeat.yml
isThis sends the logs from the volume mounted into monolithic via filebeat to logstash where they get processed by the v7 pipeline from #10.