Created
April 10, 2013 18:07
Revisions
-
kbighorse created this gist
Apr 10, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ input { redis { host => "10.0.0.1" type => "redis-input" # these settings should match the output of the agent data_type => "list" key => "logstash" # We use json_event here since the sender is a logstash agent format => "json_event" } } output { stdout { debug => true debug_format => "json" } file { gzip => true path => "/log/%{@source_host}/logstash_testing.log.gz" } }