Skip to content

Instantly share code, notes, and snippets.

@misteral
Forked from pblittle/logstash.conf
Last active August 29, 2015 14:12
Show Gist options
  • Save misteral/27168ae49181b1e2ee67 to your computer and use it in GitHub Desktop.
Save misteral/27168ae49181b1e2ee67 to your computer and use it in GitHub Desktop.
input {
stdin {
type => "stdin-type"
}
file {
type => "syslog"
path => [ "/var/log/*.log", "/var/log/messages", "/var/log/syslog" ]
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