In logstash configuration file I set input to use "my _indsex" as input and "result" as output
after restarting logstash I found that the output have documents from another configuration input index
׳׳׳
input {
elasticsearch {
hosts => "http://xxx.yyy.zzz:9200"
user => "...."
password => "....."
index => "my_index"
size => 10000
#scroll => "1m"
docinfo => true
}
}
output
{
elasticsearch {
hosts => "http://xxx.yyy.zzz:9200"
user => "....."
password => "......."
index => "result"
}
}
׳׳׳