Last active
April 1, 2016 05:51
-
-
Save RafPe/0cd6594672ebfe1205a5 to your computer and use it in GitHub Desktop.
Simple config for logstash agent forwarder and redis as event broker
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 | |
| { | |
| tcp | |
| { | |
| port => 25827 | |
| type => syslog | |
| } | |
| udp | |
| { | |
| port => 25827 | |
| type => syslog | |
| } | |
| } | |
| output | |
| { | |
| stdout { codec => rubydebug } | |
| redis | |
| { | |
| host => "redis-cache" | |
| data_type => "list" | |
| key => "logstash" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment