Skip to content

Instantly share code, notes, and snippets.

@hofrob
hofrob / filter
Last active April 11, 2025 20:25
Odoo Logstash Filter
filter {
if [type] == "odoo" {
grok {
match => { "message" => "%{ODOOLOG}" }
}
date {
match => [ "timestamp", "yyyy-MM-dd HH:mm:ss,SSS" ]
}
}
}