This repository has been archived by the owner on Jul 19, 2023. It is now read-only.
Treat aggregation of profiles different per profile type. #288
simonswine
started this conversation in
Development
Replies: 1 comment
-
Would it make sense to bake this somehow into the query language? In a similar way to Prometheus? In general I still feel like the actual absolute values in the flame graph don't really matter that much, you are probably not going to use a flamegraph to sort of alert on something like memory going over some limit. |
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
-
When aggregating a profile we have two dimension we aggregate over:
We need to treat those different depending of the profile samples are counters or gauges.:
I think aggregating gauges by sum creates non meaningful values.
For gauges we sum vertically, but need to use either an (avg,min,max, quantile) over the temporal aggregation. Any thoughts?
Beta Was this translation helpful? Give feedback.
All reactions