opensearch docker compose files added

This commit is contained in:
Chris Yoon
2022-08-08 15:37:39 +09:00
parent 2276497440
commit 0061396163
5 changed files with 212 additions and 0 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,21 @@
# LogstashTcpSocketAppender
input {
tcp {
port => 5001
codec => json
}
}
output {
stdout {}
opensearch {
hosts => ["https://opensearch:9200"]
index => "logstash-logs-%{+YYYY.MM.dd}"
user => "admin"
password => "admin"
ssl => true
ssl_certificate_verification => false
}
}