Skip to content

Instantly share code, notes, and snippets.

@sametsazak
Created March 1, 2018 19:46
Show Gist options
  • Save sametsazak/04bc1f70512008ba97534f98b4e37bab to your computer and use it in GitHub Desktop.
Save sametsazak/04bc1f70512008ba97534f98b4e37bab to your computer and use it in GitHub Desktop.
input {
udp {
port => 5000
type => syslog
}
}
filter {
if [type] == "syslog" {
grok {
match => { "message" => "%{SYSLOGTIMESTAMP:syslog_timestamp} %{SYSLOGHOST:syslog_hostname} %{DATA:syslog_program}(?:\[%{POSINT:syslog_pid}\])?: %{GREEDYDATA:syslog_message}" }
}
date {
match => [ "syslog_timestamp", "MMM d HH:mm:ss", "MMM dd HH:mm:ss" ]
}
}
}
output {
if [type] == "syslog" {
elasticsearch { hosts => ["localhost:9200"] }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment