Skip to content

Instantly share code, notes, and snippets.

@dbaba
Created July 7, 2014 13:02
Show Gist options
  • Save dbaba/c409799a9d1e1703e4d1 to your computer and use it in GitHub Desktop.
Save dbaba/c409799a9d1e1703e4d1 to your computer and use it in GitHub Desktop.
LogStash configuration file for Storm
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"
}
}
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