Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -179,4 +179,7 @@ gradle-app.setting
# JDT-specific (Eclipse Java Development Tools)
.classpath

# End of https://www.toptal.com/developers/gitignore/api/java,gradle,intellij+all
# End of https://www.toptal.com/developers/gitignore/api/java,gradle,intellij+all

# Log files generated during testing
${env:LOG_PATH}/
1 change: 1 addition & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- Read logs with filebeat from mounted Volume
- Push logs to started elasticsearch
- Visualize the logfiles with kibana
- **ELK Stack Version: 8.16.1** (Elasticsearch, Logstash, Kibana, Filebeat)

## Requirements

Expand Down
10 changes: 6 additions & 4 deletions docker-compose-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,20 @@ services:
- elasticsearch

elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.0
image: docker.elastic.co/elasticsearch/elasticsearch:8.16.1
container_name: elasticsearch
environment:
ES_JAVA_OPTS: "-Xmx256m -Xms256m"
# Use single node discovery in order to disable production mode and avoid bootstrap checks
# see https://www.elastic.co/guide/en/elasticsearch/reference/current/bootstrap-checks.html
discovery.type: single-node
xpack.security.enabled: "false"
xpack.security.http.ssl.enabled: "false"
ports:
- "9200:9200"

logstash:
image: docker.elastic.co/logstash/logstash:7.17.0
image: docker.elastic.co/logstash/logstash:8.16.1
container_name: logstash
ports:
- "5000:5000"
Expand All @@ -45,7 +47,7 @@ services:
depends_on:
- elasticsearch
kibana:
image: docker.elastic.co/kibana/kibana:7.17.0
image: docker.elastic.co/kibana/kibana:8.16.1
container_name: kibana
environment:
- ELASTICSEARCH_URL=http://elasticsearch:9200
Expand All @@ -56,7 +58,7 @@ services:
- elasticsearch

filebeat:
image: docker.elastic.co/beats/filebeat:7.17.0
image: docker.elastic.co/beats/filebeat:8.16.1
user: root
container_name: filebeat
command: filebeat -e -strict.perms=false
Expand Down
10 changes: 6 additions & 4 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,20 @@ services:
- elasticsearch

elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.0
image: docker.elastic.co/elasticsearch/elasticsearch:8.16.1
container_name: elasticsearch
environment:
ES_JAVA_OPTS: "-Xmx256m -Xms256m"
# Use single node discovery in order to disable production mode and avoid bootstrap checks
# see https://www.elastic.co/guide/en/elasticsearch/reference/current/bootstrap-checks.html
discovery.type: single-node
xpack.security.enabled: "false"
xpack.security.http.ssl.enabled: "false"
ports:
- "9200:9200"

logstash:
image: docker.elastic.co/logstash/logstash:7.17.0
image: docker.elastic.co/logstash/logstash:8.16.1
container_name: logstash
ports:
- "5000:5000"
Expand All @@ -45,7 +47,7 @@ services:
depends_on:
- elasticsearch
kibana:
image: docker.elastic.co/kibana/kibana:7.17.0
image: docker.elastic.co/kibana/kibana:8.16.1
container_name: kibana
environment:
- ELASTICSEARCH_URL=http://elasticsearch:9200
Expand All @@ -56,7 +58,7 @@ services:
- elasticsearch

filebeat:
image: docker.elastic.co/beats/filebeat:7.17.0
image: docker.elastic.co/beats/filebeat:8.16.1
user: root
container_name: filebeat
command: filebeat -e -strict.perms=false
Expand Down
Empty file modified gradlew
100644 → 100755
Empty file.