Skip to content

Instantly share code, notes, and snippets.

View varunmehta's full-sized avatar
🎯
Focusing

Varun Mehta varunmehta

🎯
Focusing
View GitHub Profile
@varunmehta
varunmehta / logstash.conf
Created August 8, 2016 15:45 — forked from markwalkom/logstash.conf
Reindexing Elasticsearch with Logstash 2.0
input {
elasticsearch {
hosts => [ "HOSTNAME_HERE" ]
port => "9200"
index => "INDEXNAME_HERE"
size => 1000
scroll => "5m"
docinfo => true
scan => true
}