[13.0][ADD] monitoring_prometheus (#239)

[13.0][ADD] monitoring_prometheus
This commit is contained in:
Patrick Tombez
2021-11-15 12:43:15 +01:00
committed by Yannick Vaucher
co-authored by Yannick Vaucher
parent 35cc8297b2
commit 7401d6f204
8 changed files with 95 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
from . import ir_http
+40
View File
@@ -0,0 +1,40 @@
# Copyright 2016-2021 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
from odoo import models
from odoo.http import request
from prometheus_client import Summary, Counter
REQUEST_TIME = Summary(
"request_latency_sec", "Request response time in sec", ["query_type"]
)
LONGPOLLING_COUNT = Counter("longpolling", "Longpolling request count")
class IrHttp(models.AbstractModel):
_inherit = "ir.http"
@classmethod
def _dispatch(cls):
path_info = request.httprequest.environ.get("PATH_INFO")
if path_info.startswith("/longpolling/"):
LONGPOLLING_COUNT.inc()
return super()._dispatch()
if path_info.startswith("/metrics"):
return super()._dispatch()
if path_info.startswith("/web/static"):
label = "assets"
elif path_info.startswith("/web/content"):
label = "filestore"
else:
label = "client"
res = None
with REQUEST_TIME.labels(label).time():
res = super()._dispatch()
return res