https://github.com/aleroxac/elk-sample
Stack ELK with logs, pipelines and settings to work in POCs.
https://github.com/aleroxac/elk-sample
beats elastic elasticsearch elk filebeat kibana logstash
Last synced: 3 months ago
JSON representation
Stack ELK with logs, pipelines and settings to work in POCs.
- Host: GitHub
- URL: https://github.com/aleroxac/elk-sample
- Owner: aleroxac
- Created: 2020-10-24T14:55:33.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-06T15:47:55.000Z (over 4 years ago)
- Last Synced: 2025-01-16T16:23:48.486Z (4 months ago)
- Topics: beats, elastic, elasticsearch, elk, filebeat, kibana, logstash
- Language: Shell
- Homepage: https://github.com/aleroxac/elk-sample
- Size: 4.52 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# elk-sample

Stack ELK with logs, pipelines and settings to work in POCs.## Resources available
- docker-compose.yml with elasticsearch, logstash, kibana and filebeat
- Service to generate fake logs to be parsed by logstash pipeline
- Basic elasticsearch, logstash, kibana and filebeat config files
- Pipeline to parse apache logs
- Script to destroy and up filebeat and logstash containers, to reindex all logs from scratch## Setup
``` shell
## Installing Docker
curl -fsSL https://get.docker.com | bash### Installing docker-compose
sudo curl -L "https://github.com/docker/compose/releases/download/1.27.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose## Running the docker-compose
docker-compose up -d
```