Created
August 27, 2014 01:12
-
-
Save dbaba/5cc0283a26d9f522f192 to your computer and use it in GitHub Desktop.
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 { | |
stdin { | |
type => "stdin-type" | |
} | |
file { | |
type => "syslog" | |
path => [ "/var/log/*.log", "/var/log/messages", "/var/log/syslog" ] | |
start_position => "beginning" | |
} | |
file { | |
type => "storm" | |
path => [ "/var/log/storm/*.log" ] | |
start_position => "beginning" | |
} | |
file { | |
type => "ssdms" | |
path => [ "/var/log/ssdms/*.log" ] | |
start_position => "beginning" | |
} | |
} | |
output { | |
stdout { | |
codec => rubydebug | |
} | |
elasticsearch { | |
embedded => true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment