You've already forked opentelemetry-go
mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2026-06-03 18:35:08 +02:00
65f85fc93a
I'm taking a stab at improving the ConcurrentSafe tests for aggregations before taking on the lockless exponential histogram implementation again. Part of https://github.com/open-telemetry/opentelemetry-go/issues/7796 This PR includes a few improvements: * All concurrent-safe tests now use 10 different attribute sets to make sure we are testing concurrent increments that result in an overflow (the cardinality limit of the test is 3). * All concurrent-safe tests for floats now include decimal valued-inputs. * Improved the validation of the collected metrics: * Validate the total after multiple collects. * Validate that increments are made to the correct bucket for histograms * Validate that the overflow attribute set has the correct total value. This uncovered an apparent race condition where the lastvalue aggregation can collect a value of zero even when no zero-value is recorded. I added a TODO, and will fix this in a follow-up. I used AI to help me design and implement tests, but requested each of the changes, and reviewed the output. --------- Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
671 lines
16 KiB
Go
671 lines
16 KiB
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package aggregate // import "go.opentelemetry.io/otel/sdk/metric/internal/aggregate"
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"go.opentelemetry.io/otel/attribute"
|
|
"go.opentelemetry.io/otel/sdk/metric/metricdata"
|
|
)
|
|
|
|
func TestSum(t *testing.T) {
|
|
c := new(clock)
|
|
t.Cleanup(c.Register())
|
|
|
|
t.Run("Int64/DeltaSum", testDeltaSum[int64]())
|
|
c.Reset()
|
|
|
|
t.Run("Float64/DeltaSum", testDeltaSum[float64]())
|
|
c.Reset()
|
|
|
|
t.Run("Int64/CumulativeSum", testCumulativeSum[int64]())
|
|
c.Reset()
|
|
|
|
t.Run("Float64/CumulativeSum", testCumulativeSum[float64]())
|
|
c.Reset()
|
|
|
|
t.Run("Int64/DeltaPrecomputedSum", testDeltaPrecomputedSum[int64]())
|
|
c.Reset()
|
|
|
|
t.Run("Float64/DeltaPrecomputedSum", testDeltaPrecomputedSum[float64]())
|
|
c.Reset()
|
|
|
|
t.Run("Int64/CumulativePrecomputedSum", testCumulativePrecomputedSum[int64]())
|
|
c.Reset()
|
|
|
|
t.Run("Float64/CumulativePrecomputedSum", testCumulativePrecomputedSum[float64]())
|
|
}
|
|
|
|
func testDeltaSum[N int64 | float64]() func(t *testing.T) {
|
|
mono := false
|
|
in, out := Builder[N]{
|
|
Temporality: metricdata.DeltaTemporality,
|
|
Filter: attrFltr,
|
|
AggregationLimit: 3,
|
|
}.Sum(mono)
|
|
ctx := context.Background()
|
|
return test[N](in, out, []teststep[N]{
|
|
{
|
|
input: []arg[N]{},
|
|
expect: output{
|
|
n: 0,
|
|
agg: metricdata.Sum[N]{
|
|
IsMonotonic: mono,
|
|
Temporality: metricdata.DeltaTemporality,
|
|
DataPoints: []metricdata.DataPoint[N]{},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
input: []arg[N]{
|
|
{ctx, 1, alice},
|
|
{ctx, -1, bob},
|
|
{ctx, 1, alice},
|
|
{ctx, 2, alice},
|
|
{ctx, -10, bob},
|
|
},
|
|
expect: output{
|
|
n: 2,
|
|
agg: metricdata.Sum[N]{
|
|
IsMonotonic: mono,
|
|
Temporality: metricdata.DeltaTemporality,
|
|
DataPoints: []metricdata.DataPoint[N]{
|
|
{
|
|
Attributes: fltrAlice,
|
|
StartTime: y2kPlus(1),
|
|
Time: y2kPlus(2),
|
|
Value: 4,
|
|
},
|
|
{
|
|
Attributes: fltrBob,
|
|
StartTime: y2kPlus(1),
|
|
Time: y2kPlus(2),
|
|
Value: -11,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
input: []arg[N]{
|
|
{ctx, 10, alice},
|
|
{ctx, 3, bob},
|
|
},
|
|
expect: output{
|
|
n: 2,
|
|
agg: metricdata.Sum[N]{
|
|
IsMonotonic: mono,
|
|
Temporality: metricdata.DeltaTemporality,
|
|
DataPoints: []metricdata.DataPoint[N]{
|
|
{
|
|
Attributes: fltrAlice,
|
|
StartTime: y2kPlus(2),
|
|
Time: y2kPlus(3),
|
|
Value: 10,
|
|
},
|
|
{
|
|
Attributes: fltrBob,
|
|
StartTime: y2kPlus(2),
|
|
Time: y2kPlus(3),
|
|
Value: 3,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
input: []arg[N]{},
|
|
// Delta sums are expected to reset.
|
|
expect: output{
|
|
n: 0,
|
|
agg: metricdata.Sum[N]{
|
|
IsMonotonic: mono,
|
|
Temporality: metricdata.DeltaTemporality,
|
|
DataPoints: []metricdata.DataPoint[N]{},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
input: []arg[N]{
|
|
{ctx, 1, alice},
|
|
{ctx, 1, bob},
|
|
// These will exceed cardinality limit.
|
|
{ctx, 1, carol},
|
|
{ctx, 1, dave},
|
|
},
|
|
expect: output{
|
|
n: 3,
|
|
agg: metricdata.Sum[N]{
|
|
IsMonotonic: mono,
|
|
Temporality: metricdata.DeltaTemporality,
|
|
DataPoints: []metricdata.DataPoint[N]{
|
|
{
|
|
Attributes: fltrAlice,
|
|
StartTime: y2kPlus(4),
|
|
Time: y2kPlus(5),
|
|
Value: 1,
|
|
},
|
|
{
|
|
Attributes: fltrBob,
|
|
StartTime: y2kPlus(4),
|
|
Time: y2kPlus(5),
|
|
Value: 1,
|
|
},
|
|
{
|
|
Attributes: overflowSet,
|
|
StartTime: y2kPlus(4),
|
|
Time: y2kPlus(5),
|
|
Value: 2,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func testCumulativeSum[N int64 | float64]() func(t *testing.T) {
|
|
mono := false
|
|
in, out := Builder[N]{
|
|
Temporality: metricdata.CumulativeTemporality,
|
|
Filter: attrFltr,
|
|
AggregationLimit: 3,
|
|
}.Sum(mono)
|
|
ctx := context.Background()
|
|
return test[N](in, out, []teststep[N]{
|
|
{
|
|
input: []arg[N]{},
|
|
expect: output{
|
|
n: 0,
|
|
agg: metricdata.Sum[N]{
|
|
IsMonotonic: mono,
|
|
Temporality: metricdata.CumulativeTemporality,
|
|
DataPoints: []metricdata.DataPoint[N]{},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
input: []arg[N]{
|
|
{ctx, 1, alice},
|
|
{ctx, -1, bob},
|
|
{ctx, 1, alice},
|
|
{ctx, 2, alice},
|
|
{ctx, -10, bob},
|
|
},
|
|
expect: output{
|
|
n: 2,
|
|
agg: metricdata.Sum[N]{
|
|
IsMonotonic: mono,
|
|
Temporality: metricdata.CumulativeTemporality,
|
|
DataPoints: []metricdata.DataPoint[N]{
|
|
{
|
|
Attributes: fltrAlice,
|
|
StartTime: y2kPlus(0),
|
|
Time: y2kPlus(2),
|
|
Value: 4,
|
|
},
|
|
{
|
|
Attributes: fltrBob,
|
|
StartTime: y2kPlus(0),
|
|
Time: y2kPlus(2),
|
|
Value: -11,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
input: []arg[N]{
|
|
{ctx, 10, alice},
|
|
{ctx, 3, bob},
|
|
},
|
|
expect: output{
|
|
n: 2,
|
|
agg: metricdata.Sum[N]{
|
|
IsMonotonic: mono,
|
|
Temporality: metricdata.CumulativeTemporality,
|
|
DataPoints: []metricdata.DataPoint[N]{
|
|
{
|
|
Attributes: fltrAlice,
|
|
StartTime: y2kPlus(0),
|
|
Time: y2kPlus(3),
|
|
Value: 14,
|
|
},
|
|
{
|
|
Attributes: fltrBob,
|
|
StartTime: y2kPlus(0),
|
|
Time: y2kPlus(3),
|
|
Value: -8,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
input: []arg[N]{
|
|
// These will exceed cardinality limit.
|
|
{ctx, 1, carol},
|
|
{ctx, 1, dave},
|
|
},
|
|
expect: output{
|
|
n: 3,
|
|
agg: metricdata.Sum[N]{
|
|
IsMonotonic: mono,
|
|
Temporality: metricdata.CumulativeTemporality,
|
|
DataPoints: []metricdata.DataPoint[N]{
|
|
{
|
|
Attributes: fltrAlice,
|
|
StartTime: y2kPlus(0),
|
|
Time: y2kPlus(4),
|
|
Value: 14,
|
|
},
|
|
{
|
|
Attributes: fltrBob,
|
|
StartTime: y2kPlus(0),
|
|
Time: y2kPlus(4),
|
|
Value: -8,
|
|
},
|
|
{
|
|
Attributes: overflowSet,
|
|
StartTime: y2kPlus(0),
|
|
Time: y2kPlus(4),
|
|
Value: 2,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func testDeltaPrecomputedSum[N int64 | float64]() func(t *testing.T) {
|
|
mono := false
|
|
in, out := Builder[N]{
|
|
Temporality: metricdata.DeltaTemporality,
|
|
Filter: attrFltr,
|
|
AggregationLimit: 3,
|
|
}.PrecomputedSum(mono)
|
|
ctx := context.Background()
|
|
return test[N](in, out, []teststep[N]{
|
|
{
|
|
input: []arg[N]{},
|
|
expect: output{
|
|
n: 0,
|
|
agg: metricdata.Sum[N]{
|
|
IsMonotonic: mono,
|
|
Temporality: metricdata.DeltaTemporality,
|
|
DataPoints: []metricdata.DataPoint[N]{},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
input: []arg[N]{
|
|
{ctx, 1, alice},
|
|
{ctx, -1, bob},
|
|
{ctx, 1, fltrAlice},
|
|
{ctx, 2, alice},
|
|
{ctx, -10, bob},
|
|
},
|
|
expect: output{
|
|
n: 2,
|
|
agg: metricdata.Sum[N]{
|
|
IsMonotonic: mono,
|
|
Temporality: metricdata.DeltaTemporality,
|
|
DataPoints: []metricdata.DataPoint[N]{
|
|
{
|
|
Attributes: fltrAlice,
|
|
StartTime: y2kPlus(1),
|
|
Time: y2kPlus(2),
|
|
Value: 4,
|
|
},
|
|
{
|
|
Attributes: fltrBob,
|
|
StartTime: y2kPlus(1),
|
|
Time: y2kPlus(2),
|
|
Value: -11,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
input: []arg[N]{
|
|
{ctx, 1, fltrAlice},
|
|
{ctx, 10, alice},
|
|
{ctx, 3, bob},
|
|
},
|
|
expect: output{
|
|
n: 2,
|
|
agg: metricdata.Sum[N]{
|
|
IsMonotonic: mono,
|
|
Temporality: metricdata.DeltaTemporality,
|
|
DataPoints: []metricdata.DataPoint[N]{
|
|
{
|
|
Attributes: fltrAlice,
|
|
StartTime: y2kPlus(2),
|
|
Time: y2kPlus(3),
|
|
Value: 7,
|
|
},
|
|
{
|
|
Attributes: fltrBob,
|
|
StartTime: y2kPlus(2),
|
|
Time: y2kPlus(3),
|
|
Value: 14,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
input: []arg[N]{},
|
|
// Precomputed sums are expected to reset.
|
|
expect: output{
|
|
n: 0,
|
|
agg: metricdata.Sum[N]{
|
|
IsMonotonic: mono,
|
|
Temporality: metricdata.DeltaTemporality,
|
|
DataPoints: []metricdata.DataPoint[N]{},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
input: []arg[N]{
|
|
{ctx, 1, alice},
|
|
{ctx, 1, bob},
|
|
// These will exceed cardinality limit.
|
|
{ctx, 1, carol},
|
|
{ctx, 1, dave},
|
|
},
|
|
expect: output{
|
|
n: 3,
|
|
agg: metricdata.Sum[N]{
|
|
IsMonotonic: mono,
|
|
Temporality: metricdata.DeltaTemporality,
|
|
DataPoints: []metricdata.DataPoint[N]{
|
|
{
|
|
Attributes: fltrAlice,
|
|
StartTime: y2kPlus(4),
|
|
Time: y2kPlus(5),
|
|
Value: 1,
|
|
},
|
|
{
|
|
Attributes: fltrBob,
|
|
StartTime: y2kPlus(4),
|
|
Time: y2kPlus(5),
|
|
Value: 1,
|
|
},
|
|
{
|
|
Attributes: overflowSet,
|
|
StartTime: y2kPlus(4),
|
|
Time: y2kPlus(5),
|
|
Value: 2,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func testCumulativePrecomputedSum[N int64 | float64]() func(t *testing.T) {
|
|
mono := false
|
|
in, out := Builder[N]{
|
|
Temporality: metricdata.CumulativeTemporality,
|
|
Filter: attrFltr,
|
|
AggregationLimit: 3,
|
|
}.PrecomputedSum(mono)
|
|
ctx := context.Background()
|
|
return test[N](in, out, []teststep[N]{
|
|
{
|
|
input: []arg[N]{},
|
|
expect: output{
|
|
n: 0,
|
|
agg: metricdata.Sum[N]{
|
|
IsMonotonic: mono,
|
|
Temporality: metricdata.CumulativeTemporality,
|
|
DataPoints: []metricdata.DataPoint[N]{},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
input: []arg[N]{
|
|
{ctx, 1, alice},
|
|
{ctx, -1, bob},
|
|
{ctx, 1, fltrAlice},
|
|
{ctx, 2, alice},
|
|
{ctx, -10, bob},
|
|
},
|
|
expect: output{
|
|
n: 2,
|
|
agg: metricdata.Sum[N]{
|
|
IsMonotonic: mono,
|
|
Temporality: metricdata.CumulativeTemporality,
|
|
DataPoints: []metricdata.DataPoint[N]{
|
|
{
|
|
Attributes: fltrAlice,
|
|
StartTime: y2kPlus(0),
|
|
Time: y2kPlus(2),
|
|
Value: 4,
|
|
},
|
|
{
|
|
Attributes: fltrBob,
|
|
StartTime: y2kPlus(0),
|
|
Time: y2kPlus(2),
|
|
Value: -11,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
input: []arg[N]{
|
|
{ctx, 1, fltrAlice},
|
|
{ctx, 10, alice},
|
|
{ctx, 3, bob},
|
|
},
|
|
expect: output{
|
|
n: 2,
|
|
agg: metricdata.Sum[N]{
|
|
IsMonotonic: mono,
|
|
Temporality: metricdata.CumulativeTemporality,
|
|
DataPoints: []metricdata.DataPoint[N]{
|
|
{
|
|
Attributes: fltrAlice,
|
|
StartTime: y2kPlus(0),
|
|
Time: y2kPlus(3),
|
|
Value: 11,
|
|
},
|
|
{
|
|
Attributes: fltrBob,
|
|
StartTime: y2kPlus(0),
|
|
Time: y2kPlus(3),
|
|
Value: 3,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
input: []arg[N]{},
|
|
// Precomputed sums are expected to reset.
|
|
expect: output{
|
|
n: 0,
|
|
agg: metricdata.Sum[N]{
|
|
IsMonotonic: mono,
|
|
Temporality: metricdata.CumulativeTemporality,
|
|
DataPoints: []metricdata.DataPoint[N]{},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
input: []arg[N]{
|
|
{ctx, 1, alice},
|
|
{ctx, 1, bob},
|
|
// These will exceed cardinality limit.
|
|
{ctx, 1, carol},
|
|
{ctx, 1, dave},
|
|
},
|
|
expect: output{
|
|
n: 3,
|
|
agg: metricdata.Sum[N]{
|
|
IsMonotonic: mono,
|
|
Temporality: metricdata.CumulativeTemporality,
|
|
DataPoints: []metricdata.DataPoint[N]{
|
|
{
|
|
Attributes: fltrAlice,
|
|
StartTime: y2kPlus(0),
|
|
Time: y2kPlus(5),
|
|
Value: 1,
|
|
},
|
|
{
|
|
Attributes: fltrBob,
|
|
StartTime: y2kPlus(0),
|
|
Time: y2kPlus(5),
|
|
Value: 1,
|
|
},
|
|
{
|
|
Attributes: overflowSet,
|
|
StartTime: y2kPlus(0),
|
|
Time: y2kPlus(5),
|
|
Value: 2,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func TestSumConcurrentSafe(t *testing.T) {
|
|
t.Run("Int64/DeltaSum", testDeltaSumConcurrentSafe[int64]())
|
|
t.Run("Float64/DeltaSum", testDeltaSumConcurrentSafe[float64]())
|
|
t.Run("Int64/CumulativeSum", testCumulativeSumConcurrentSafe[int64]())
|
|
t.Run("Float64/CumulativeSum", testCumulativeSumConcurrentSafe[float64]())
|
|
t.Run("Int64/DeltaPrecomputedSum", testDeltaPrecomputedSumConcurrentSafe[int64]())
|
|
t.Run("Float64/DeltaPrecomputedSum", testDeltaPrecomputedSumConcurrentSafe[float64]())
|
|
t.Run("Int64/CumulativePrecomputedSum", testCumulativePrecomputedSumConcurrentSafe[int64]())
|
|
t.Run("Float64/CumulativePrecomputedSum", testCumulativePrecomputedSumConcurrentSafe[float64]())
|
|
}
|
|
|
|
//nolint:revive // isPrecomputed is used for configuring validation
|
|
func validateSum[N int64 | float64](isPrecomputed bool) func(t *testing.T, aggs []metricdata.Aggregation) {
|
|
return func(t *testing.T, aggs []metricdata.Aggregation) {
|
|
sums := make(map[attribute.Set]N)
|
|
for i, agg := range aggs {
|
|
s, ok := agg.(metricdata.Sum[N])
|
|
require.True(t, ok)
|
|
require.LessOrEqual(t, len(s.DataPoints), 3, "AggregationLimit of 3 exceeded in a single cycle")
|
|
for _, dp := range s.DataPoints {
|
|
if s.Temporality == metricdata.DeltaTemporality {
|
|
sums[dp.Attributes] += dp.Value
|
|
} else if i == len(aggs)-1 {
|
|
sums[dp.Attributes] = dp.Value
|
|
}
|
|
}
|
|
}
|
|
|
|
if isPrecomputed {
|
|
// Precomputed Sums clear the state when collected concurrently. Due to hot/cold overlap
|
|
// during flush, the sum drops intermediate updates, so the final calculation won't cleanly
|
|
// add up to the total number of operations performed by the workers. Therefore, skip exact
|
|
// invariant check, verifying only that limits and map updates occurred safely.
|
|
return
|
|
}
|
|
|
|
var total N
|
|
for _, val := range sums {
|
|
total += val
|
|
}
|
|
|
|
assertSumEqual[N](t, expectedConcurrentSum[N](), total)
|
|
}
|
|
}
|
|
|
|
func testDeltaSumConcurrentSafe[N int64 | float64]() func(t *testing.T) {
|
|
in, out := Builder[N]{
|
|
Temporality: metricdata.DeltaTemporality,
|
|
Filter: attrFltr,
|
|
AggregationLimit: 3,
|
|
}.Sum(false)
|
|
return testAggregationConcurrentSafe[N](in, out, validateSum[N](false))
|
|
}
|
|
|
|
func testCumulativeSumConcurrentSafe[N int64 | float64]() func(t *testing.T) {
|
|
in, out := Builder[N]{
|
|
Temporality: metricdata.CumulativeTemporality,
|
|
Filter: attrFltr,
|
|
AggregationLimit: 3,
|
|
}.Sum(false)
|
|
return testAggregationConcurrentSafe[N](in, out, validateSum[N](false))
|
|
}
|
|
|
|
func testDeltaPrecomputedSumConcurrentSafe[N int64 | float64]() func(t *testing.T) {
|
|
in, out := Builder[N]{
|
|
Temporality: metricdata.DeltaTemporality,
|
|
Filter: attrFltr,
|
|
AggregationLimit: 3,
|
|
}.PrecomputedSum(false)
|
|
return testAggregationConcurrentSafe[N](in, out, validateSum[N](true))
|
|
}
|
|
|
|
func testCumulativePrecomputedSumConcurrentSafe[N int64 | float64]() func(t *testing.T) {
|
|
in, out := Builder[N]{
|
|
Temporality: metricdata.CumulativeTemporality,
|
|
Filter: attrFltr,
|
|
AggregationLimit: 3,
|
|
}.PrecomputedSum(false)
|
|
return testAggregationConcurrentSafe[N](in, out, validateSum[N](true))
|
|
}
|
|
|
|
func BenchmarkSum(b *testing.B) {
|
|
// The monotonic argument is only used to annotate the Sum returned from
|
|
// the Aggregation method. It should not have an effect on operational
|
|
// performance, therefore, only monotonic=false is benchmarked here.
|
|
b.Run("Int64/Cumulative", benchmarkAggregate(func() (Measure[int64], ComputeAggregation) {
|
|
return Builder[int64]{
|
|
Temporality: metricdata.CumulativeTemporality,
|
|
}.Sum(false)
|
|
}))
|
|
b.Run("Int64/Delta", benchmarkAggregate(func() (Measure[int64], ComputeAggregation) {
|
|
return Builder[int64]{
|
|
Temporality: metricdata.DeltaTemporality,
|
|
}.Sum(false)
|
|
}))
|
|
b.Run("Float64/Cumulative", benchmarkAggregate(func() (Measure[float64], ComputeAggregation) {
|
|
return Builder[float64]{
|
|
Temporality: metricdata.CumulativeTemporality,
|
|
}.Sum(false)
|
|
}))
|
|
b.Run("Float64/Delta", benchmarkAggregate(func() (Measure[float64], ComputeAggregation) {
|
|
return Builder[float64]{
|
|
Temporality: metricdata.DeltaTemporality,
|
|
}.Sum(false)
|
|
}))
|
|
|
|
b.Run("Precomputed/Int64/Cumulative", benchmarkAggregate(func() (Measure[int64], ComputeAggregation) {
|
|
return Builder[int64]{
|
|
Temporality: metricdata.CumulativeTemporality,
|
|
}.PrecomputedSum(false)
|
|
}))
|
|
b.Run("Precomputed/Int64/Delta", benchmarkAggregate(func() (Measure[int64], ComputeAggregation) {
|
|
return Builder[int64]{
|
|
Temporality: metricdata.DeltaTemporality,
|
|
}.PrecomputedSum(false)
|
|
}))
|
|
b.Run("Precomputed/Float64/Cumulative", benchmarkAggregate(func() (Measure[float64], ComputeAggregation) {
|
|
return Builder[float64]{
|
|
Temporality: metricdata.CumulativeTemporality,
|
|
}.PrecomputedSum(false)
|
|
}))
|
|
b.Run("Precomputed/Float64/Delta", benchmarkAggregate(func() (Measure[float64], ComputeAggregation) {
|
|
return Builder[float64]{
|
|
Temporality: metricdata.DeltaTemporality,
|
|
}.PrecomputedSum(false)
|
|
}))
|
|
}
|