Created
October 17, 2013 11:18
-
-
Save xlson/7023182 to your computer and use it in GitHub Desktop.
Logstash 1.2.1 config to reproduce the problem of logstash not shutting down properly after being sent ^C.
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 { | |
redis { | |
host => "127.0.0.1" | |
data_type => "list" | |
key => "logstash" | |
codec => json | |
} | |
} | |
output { | |
stdout { codec => rubydebug } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment