🔧 Add docker compose

This commit is contained in:
kimjaeyeol
2021-10-21 09:19:24 +09:00
parent cb9d50511e
commit a36a3e6359
9 changed files with 1084 additions and 154 deletions

View File

@@ -0,0 +1,7 @@
http.host: "0.0.0.0"
## X-Pack security credentials
#
# xpack.monitoring.enabled: true
# xpack.monitoring.elasticsearch.username: elastic
# xpack.monitoring.elasticsearch.password: changeme

View File

@@ -0,0 +1,13 @@
# LogstashTcpSocketAppender
input {
tcp {
port => 5001
codec => json_lines
}
}
output {
elasticsearch {
hosts => "http://elasticsearch:9200"
}
}