what does the correct output section look like?
output {
elasticsearch {
host => "172.17.20.207","172.17.20.208" }
}
will above still work as a cluster or am i kust sending the same data to two hosts independently?
what does the correct output section look like?
output {
elasticsearch {
host => "172.17.20.207","172.17.20.208" }
}
will above still work as a cluster or am i kust sending the same data to two hosts independently?
This:
host => "172.17.20.207","172.17.20.208" }
Needs to be this:
host => ["172.17.20.207","172.17.20.208"] }
Logstash will send each event to exactly one of the listed servers.
© 2020. All Rights Reserved - Elasticsearch
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant logo are trademarks of the Apache Software Foundation in the United States and/or other countries.