-
-
Notifications
You must be signed in to change notification settings - Fork 322
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release
v2.0.0
🚀 - Merge pull request #43 from sherifabdlnaby/v2.0.0
Release `v2.0.0` 🚀 - ⬆️ Default Stack Version `7.12.0` => `7.16.2` ⬆️ - ✨Enabled SSL on HTTP Layer - Enables the usage of ELK Alerts - Enables the usage of ML Jobs - Enables the usage of SIEM features - ✨Add `make collect-docker-logs` option that will ship Host docker containers to ELK. - Removed `ElastAlert` & `Curator` from bundled tools, replaced with native ELK Features. - No Longer use Custom Built Images instead pull images directly from Registry.
- Loading branch information
Showing
39 changed files
with
175 additions
and
903 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
version: '3.5' | ||
|
||
# will contain all elasticsearch data. | ||
volumes: | ||
filebeat-data: | ||
|
||
services: | ||
# Docker Logs Shipper ------------------------------ | ||
filebeat: | ||
image: docker.elastic.co/beats/filebeat:${ELK_VERSION} | ||
restart: always | ||
# -e flag to log to stderr and disable syslog/file output | ||
command: -e --strict.perms=false | ||
user: root | ||
environment: | ||
ELASTIC_USERNAME: ${ELASTIC_USERNAME} | ||
ELASTIC_PASSWORD: ${ELASTIC_PASSWORD} | ||
KIBANA_HOST_PORT: ${KIBANA_HOST}:${KIBANA_PORT} | ||
ELASTICSEARCH_HOST_PORT: https://${ELASTICSEARCH_HOST}:${ELASTICSEARCH_PORT} | ||
volumes: | ||
- ./filebeat/filebeat.docker.logs.yml:/usr/share/filebeat/filebeat.yml:ro | ||
- /var/lib/docker/containers:/var/lib/docker/containers:ro | ||
- /var/run/docker.sock:/var/run/docker.sock:ro | ||
- filebeat-data:/var/lib/filebeat/data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.