Created
April 18, 2016 00:02
-
-
Save sandcastle/d1ce101d8cf7d1425b2b6b707effadf1 to your computer and use it in GitHub Desktop.
Logstash Syslog to Elasticsearch configuration via docker
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 { | |
| syslog { | |
| port => 12345 | |
| type => "docker" | |
| } | |
| } | |
| output { | |
| elasticsearch { | |
| hosts => [ "elasticsearch" ] | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment