Skip to content

Instantly share code, notes, and snippets.

@dbertha
dbertha / filter
Created July 24, 2016 15:24 — forked from hofrob/filter
Odoo Logstash Filter
filter {
if [type] == "odoo" {
grok {
match => { "message" => "%{ODOOLOG}" }
}
date {
match => [ "timestamp", "yyyy-MM-dd HH:mm:ss,SSS" ]
}
}
}