Created
December 17, 2015 16:47
-
-
Save IanVaughan/22dfea26736c11d0fc9a to your computer and use it in GitHub Desktop.
logstash-test.conf
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 characters
input { stdin { } } | |
filter { | |
grok { | |
match => { "message" => "%{LOGRAGE}" } | |
} | |
} | |
output { | |
elasticsearch { hosts => ["localhost:9200"] } | |
stdout { codec => rubydebug } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment