Odoo logs parsing

Hi everyone,

I’m trying to adapt the Odoo parser to catch http request.

A request looks like this :
“2025-07-12 22:56:34,378 2923 INFO odoo werkzeug: 1.1.1.1 - - [12/Jul/2025 22:56:34] “GET /web/login?redirect=/odoo? HTTP/1.0” 200 - 4 0.002 0.007”

I tried different paterns without getting the right one to get the log to go to the parser. I ended up with this one for the moment :
‘%{TIMESTAMP_ISO8601:timestamp} %{INT:PID} INFO %{DATA:db_name} werkzeug: %{IP:source_ip} - - [%{DATE_EU:dateeu} %{TIME:time}] “%{WORD:verb} %{NOTSPACE:request} HTTP/%{NUMBER:httpversion}” %{NUMBER:response} - %{NOTSPACE} %{NOTSPACE} %{NOTSPACE}’

I don’t know what I am missing…

If someone can help me, It would be greatly appreciated.

Thanks in advance.