Skip to content

Instantly share code, notes, and snippets.

@devinrsmith
Forked from pblittle/logstash.conf
Last active August 29, 2015 14:05
Show Gist options
  • Save devinrsmith/b7c93633a2c0a8202d89 to your computer and use it in GitHub Desktop.
Save devinrsmith/b7c93633a2c0a8202d89 to your computer and use it in GitHub Desktop.
input {
tcp {
type => "syslog"
port => 514
}
}
filter {
if [type] == "syslog" {
grok {
match => { "message" => "%{SYSLOGTIMESTAMP:syslog_timestamp} %{SYSLOGHOST:syslog_hostname} %{DATA:syslog_program}(?:\[%{POSINT:syslog_pid}\])?: %{GREEDYDATA:syslog_message}" }
add_field => [ "received_at", "%{@timestamp}" ]
add_field => [ "received_from", "%{host}" ]
}
syslog_pri { }
date {
match => [ "syslog_timestamp", "MMM d HH:mm:ss", "MMM dd HH:mm:ss" ]
}
}
}
output {
elasticsearch {
embedded => true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment