-
Notifications
You must be signed in to change notification settings - Fork 681
Description
Hi team,
I’m currently looking for a way to monitor the daily number of requests in the system.
While exploring the available metrics, I found this one :
com_codahale_metrics_MetricRegistry_content_request_count
To estimate the daily volume, I created the following PromQL query :
increase(com_codahale_metrics_MetricRegistry_content_request_count[24h])
However, I noticed a significant difference between the value reported by this query in my monitoring dashboard and the request counter shown in the UI.
Before digging deeper, I wanted to ask :
Is this the right metric to track the number of requests?
If not, is there another metric that should be used for this purpose?
Or is there any known offset/difference between the UI counter and the exposed Prometheus metrics?
Thanks a lot!