Created
September 20, 2017 12:42
-
-
Save deruke/d49b0ce957e1d7fcd8215ccae460f8c6 to your computer and use it in GitHub Desktop.
This file contains 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 characters
input { | |
tcp { | |
port => 3515 | |
codec => json | |
} | |
} | |
filter { | |
mutate { | |
add_tag => "forwardedevtx" | |
} | |
} | |
output | |
{ | |
elasticsearch { | |
hosts => [ "127.0.0.1:9200" ] | |
index => "forwardedevtx-%{+YYYY.MM.dd}" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment