Logstash elasticsearch input plugin

Hi all,

I am wondering if there is a way to have the elasticsearch input filter search multiple times instead of once. Right now I am trying to use the filter to watch for changes a certain index and (ideally) have the input activate each time there is a new event in the index.

input {
	elasticsearch {
		hosts => ["localhost:9200"]
		index => "final-waitingactivitylogs"
		scroll => "1m"
	}
}

Right now it seems to only run once on logstash start. Can I have it so it runs on an interval or all the time?

Thanks

There's not, there is a request for it here if you'd like to upvote it https://github.com/logstash-plugins/logstash-input-elasticsearch/issues/65

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.