Skip to content

Instantly share code, notes, and snippets.

View minhd's full-sized avatar

Minh Duc Nguyen minhd

  • Australian Research Data Common
  • Canberra
View GitHub Profile
@minhd
minhd / logstash.conf
Created July 28, 2016 00:12 — 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
}