monitoring-plugins icon indicating copy to clipboard operation
monitoring-plugins copied to clipboard

Strategy: Don't use already-aggregated values

Open NavidSassan opened this issue 4 years ago • 1 comments

In GitLab by @markuslf on Jul 23, 2021, 16:38

Be aware of already-aggregated values returned by systems and applications. Apache for example returns a value "137.5 kB/request". Sounds good, but this is not a value at the current time of measurement. Instead, it is the average of all requests during the lifetime of the Apache worker process. If you use this in some sort of Grafana panel, you just get a boring line which converges towards a constant value very fast. Not useful at all.

A monitoring plugin has to calculate such values always on its own. If this is not possible because of missing data, discard them.

Task:

  • Search all Grafana panels for such values.
  • Re-calculate those values on your own, or discard them.

NavidSassan avatar Jul 23 '21 14:07 NavidSassan

In GitLab by @markuslf on Feb 16, 2022, 21:53

unassigned @markuslf

NavidSassan avatar Feb 16 '22 20:02 NavidSassan