EOX GitLab Instance
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
VS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ESA
PRISM
VS
Merge requests
!17
Couldn't fetch the linked file.
Resolve "Integrate ELK stack with Fluentd"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Integrate ELK stack with Fluentd"
9-logging-setup
into
master
Overview
0
Commits
20
Pipelines
0
Changes
3
Merged
Bernhard Mallinger
requested to merge
9-logging-setup
into
master
4 years ago
Overview
0
Commits
20
Pipelines
0
Changes
3
Expand
Closes
#9 (closed)
0
0
Merge request reports
Viewing commit
ead63888
Prev
Next
Show latest version
3 files
+
46
−
71
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
ead63888
Split efk stack to base, ops and dev
· ead63888
Bernhard Mallinger
authored
4 years ago
docker-compose.efk.dev.yml
+
0
−
37
Options
version
:
"
3.6"
services
:
fluentd
:
image
:
registry.gitlab.eox.at/esa/prism/vs/fluentd:0.0.0-test
configs
:
-
source
:
fluentd-conf
target
:
/fluentd/etc/fluent.conf
ports
:
-
"
24224:24224"
-
"
24224:24224/udp"
networks
:
-
logging
deploy
:
# fluentd doesn't need to be deployed globally, but it might be a good
# default to have it everywhere
mode
:
global
elasticsearch
:
image
:
elasticsearch:7.9.0
ports
:
-
"
9200:9200"
networks
:
-
logging
environment
:
-
bootstrap.memory_lock=true
-
"
ES_JAVA_OPTS=-Xms256m
-Xmx256m"
-
"
discovery.type=single-node"
deploy
:
replicas
:
1
placement
:
constraints
:
[
node.role == manager
]
resources
:
limits
:
memory
:
500M
volumes
:
-
es-data:/usr/share/elasticsearch/data
kibana
:
image
:
kibana:7.9.0
ports
:
-
"
5601:5601"
networks
:
-
logging
deploy
:
mode
:
replicated
replicas
:
1
placement
:
constraints
:
[
node.role == manager
]
configs
:
fluentd-conf
:
file
:
./fluentd/conf/fluent.conf
volumes
:
es-data
:
networks
:
logging
:
Loading