Skip to content

Instantly share code, notes, and snippets.

@abhinavn
Last active August 29, 2015 14:04
Show Gist options
  • Select an option

  • Save abhinavn/1f352f8ec2807cc1d21c to your computer and use it in GitHub Desktop.

Select an option

Save abhinavn/1f352f8ec2807cc1d21c to your computer and use it in GitHub Desktop.
logstash.conf
input {
syslog {
type => syslog
port => 514
codec => plain { charset => "ISO-8859-1" }
}
file {
type => syslog
path => [ "/var/log/*.log" ]
}
}
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