logstash同时输出多个es集群
2021-03-19 本文已影响0人
小诸葛686
根据以下配置验证logstash可以同时往多个es集群输出内容,验证通过:
output {
elasticsearch {
hosts => ["http://localhost:9201"]
index => "log-web-%{[fields][tenant]}-%{+YYYY.MM.dd}"
template_overwrite => true
}
elasticsearch {
hosts => ["http://localhost:9200"]
index => "log-web-%{[fields][tenant]}-%{+YYYY.MM.dd}"
template_overwrite => true
}
}