-
-
Save thebennos/9b19e617598c744cd421 to your computer and use it in GitHub Desktop.
Revisions
-
markwalkom revised this gist
Nov 20, 2015 . 1 changed file with 2 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -12,10 +12,9 @@ input { output { elasticsearch { hosts => [ "HOSTNAME_HERE" ] index => "%{[@metadata][_index]}" document_type => "%{[@metadata][_type]}" document_id => "%{[@metadata][_id]}" } stdout { -
markwalkom revised this gist
May 27, 2015 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,9 +3,10 @@ input { hosts => [ "HOSTNAME_HERE" ] port => "9200" index => "INDEXNAME_HERE" size => 1000 scroll => "5m" docinfo => true scan => true } } -
markwalkom renamed this gist
May 4, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
markwalkom revised this gist
May 4, 2015 . 1 changed file with 1 addition and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,3 @@ input { elasticsearch { hosts => [ "HOSTNAME_HERE" ] @@ -21,5 +20,4 @@ output { stdout { codec => "dots" } } -
markwalkom created this gist
May 4, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ ``` input { elasticsearch { hosts => [ "HOSTNAME_HERE" ] port => "9200" index => "INDEXNAME_HERE" size => 500 scroll => "5m" docinfo => true } } output { elasticsearch { host => "localhost" protocol => "http" index => "%{[@metadata][_index]}" index_type => "%{[@metadata][_type]}" document_id => "%{[@metadata][_id]}" } stdout { codec => "dots" } } ```