Skip to content

Instantly share code, notes, and snippets.

@haoch
Created June 24, 2016 17:46
Show Gist options
  • Save haoch/36120d13944f1c36b6b8be050b569323 to your computer and use it in GitHub Desktop.
Save haoch/36120d13944f1c36b6b8be050b569323 to your computer and use it in GitHub Desktop.
input {
kafka {
zk_connect => "localhost:2181"
topic_id => "input_log_topic"
}
}
filter{
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}" ]
}
date {
match => [ "syslog_timestamp", "MMM d HH:mm:ss", "MMM dd HH:mm:ss" ]
}
}
output {
kafka {
bootstrap_servers => "localhost:9092"
topic_id => "output_log_topic"
batch_size => 1
}
stdout {
codec => rubydebug
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment