How to disable metrics averaging? #11495
Replies: 2 comments
-
Beta Was this translation helpful? Give feedback.
0 replies
-
Noticed another oddity. At first I get a smooth metric, the holes appear a little later ![]() ![]() |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi. I run collector and monitor it with this Grafana dashboard. With 1 RPS and 10 RPS load, I got this metrics from query:

When the load instantly increased to 10, the graph went to this value for 5 minutes. When the load instantly disappeared, the graph also fell for 5 minutes
Looks like result of
movingAverage(, 5min)
. How to get real load metrics?What I tried?

Replacing all variables from query with constants (
sum(rate(otelcol_receiver_accepted_log_records{receiver=~".*"}[10s])) by (receiver , )
), i got this:A way better, but not accurate. Graph show 10 records per 10 seconds, not 10 records per 1 second. Also, I dont understand why query results are different, if queries are equal
Beta Was this translation helpful? Give feedback.
All reactions