Created
August 7, 2015 13:56
-
-
Save thyagobr/24a902e6358f83cb5697 to your computer and use it in GitHub Desktop.
logstash basic udp/es config
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 { | |
| udp { | |
| port => 5228 | |
| codec => json_lines | |
| } | |
| } | |
| output { | |
| elasticsearch { host => localhost } | |
| stdout { | |
| codec => json_lines | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment