Closed
Description
Component(s)
processor/deltatocumulative
Describe the issue you're reporting
To convert delta to cumulative, the spec says the following:
Add the current value to the cumulative counter
While that operation is clear for sums (
type Histogram struct {
count int64
sum float64
bucket_counts []int64 // optional
explicit_bounds []float64 // optional
min, max float64 // optional
} |
|
Let's discuss how this operation should look like and what the edge-cases are
@jpkrohling @gouthamve @RichieSams @djaglowski