-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simplify the last-value aggregate path
Instead of treating the returned *lastValue as an aggregator from newLastValue, just use the type directly to construct the Measure and ComputeAggregation functions returned from the Builder. Accept a destination type for the underlying computeAggregation. This allows memory reuse for collections which adds a considerable optimization. Simplify the integration testing of the last-value aggregate. Update benchmarking.
- Loading branch information
Showing
5 changed files
with
249 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
// Copyright The OpenTelemetry Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package aggregate // import "go.opentelemetry.io/otel/sdk/metric/internal/aggregate" | ||
|
||
import ( | ||
"context" | ||
"strconv" | ||
"testing" | ||
"time" | ||
|
||
"github.com/stretchr/testify/assert" | ||
"go.opentelemetry.io/otel/attribute" | ||
"go.opentelemetry.io/otel/sdk/metric/metricdata" | ||
"go.opentelemetry.io/otel/sdk/metric/metricdata/metricdatatest" | ||
) | ||
|
||
var ( | ||
keyUser = "user" | ||
userAlice = attribute.String(keyUser, "Alice") | ||
userBob = attribute.String(keyUser, "Bob") | ||
adminTrue = attribute.Bool("admin", true) | ||
adminFalse = attribute.Bool("admin", false) | ||
|
||
alice = attribute.NewSet(userAlice, adminTrue) | ||
bob = attribute.NewSet(userBob, adminFalse) | ||
|
||
// Filtered. | ||
attrFltr = func(kv attribute.KeyValue) bool { | ||
return kv.Key == attribute.Key(keyUser) | ||
} | ||
fltrAlice = attribute.NewSet(userAlice) | ||
fltrBob = attribute.NewSet(userBob) | ||
|
||
// Sat Jan 01 2000 00:00:00 GMT+0000. | ||
staticTime = time.Unix(946684800, 0) | ||
staticNowFunc = func() time.Time { return staticTime } | ||
// Pass to t.Cleanup to override the now function with staticNowFunc and | ||
// revert once the test completes. E.g. t.Cleanup(mockTime(now)). | ||
mockTime = func(orig func() time.Time) (cleanup func()) { | ||
now = staticNowFunc | ||
return func() { now = orig } | ||
} | ||
) | ||
|
||
type arg[N int64 | float64] struct { | ||
ctx context.Context | ||
value N | ||
attr attribute.Set | ||
} | ||
|
||
type output struct { | ||
n int | ||
agg metricdata.Aggregation | ||
} | ||
|
||
type teststep[N int64 | float64] struct { | ||
input []arg[N] | ||
expect output | ||
} | ||
|
||
func test[N int64 | float64](meas Measure[N], comp ComputeAggregation, steps []teststep[N]) func(*testing.T) { | ||
return func(t *testing.T) { | ||
t.Helper() | ||
|
||
got := new(metricdata.Aggregation) | ||
for i, step := range steps { | ||
for _, args := range step.input { | ||
meas(args.ctx, args.value, args.attr) | ||
} | ||
|
||
t.Logf("step: %d", i) | ||
assert.Equal(t, step.expect.n, comp(got), "incorrect data size") | ||
metricdatatest.AssertAggregationsEqual(t, step.expect.agg, *got) | ||
} | ||
} | ||
} | ||
|
||
func benchmarkAggregate[N int64 | float64](factory func() (Measure[N], ComputeAggregation)) func(*testing.B) { | ||
counts := []int{1, 10, 100} | ||
return func(b *testing.B) { | ||
for _, n := range counts { | ||
b.Run(strconv.Itoa(n), func(b *testing.B) { | ||
benchmarkAggregateN(b, factory, n) | ||
}) | ||
} | ||
} | ||
} | ||
|
||
var bmarkRes metricdata.Aggregation | ||
|
||
func benchmarkAggregateN[N int64 | float64](b *testing.B, factory func() (Measure[N], ComputeAggregation), count int) { | ||
ctx := context.Background() | ||
attrs := make([]attribute.Set, count) | ||
for i := range attrs { | ||
attrs[i] = attribute.NewSet(attribute.Int("value", i)) | ||
} | ||
|
||
b.Run("Measure", func(b *testing.B) { | ||
got := &bmarkRes | ||
meas, comp := factory() | ||
b.ReportAllocs() | ||
b.ResetTimer() | ||
|
||
for n := 0; n < b.N; n++ { | ||
for _, attr := range attrs { | ||
meas(ctx, 1, attr) | ||
} | ||
} | ||
|
||
comp(got) | ||
}) | ||
|
||
b.Run("ComputeAggregation", func(b *testing.B) { | ||
comps := make([]ComputeAggregation, b.N) | ||
for n := range comps { | ||
meas, comp := factory() | ||
for _, attr := range attrs { | ||
meas(ctx, 1, attr) | ||
} | ||
comps[n] = comp | ||
} | ||
|
||
got := &bmarkRes | ||
b.ReportAllocs() | ||
b.ResetTimer() | ||
|
||
for n := 0; n < b.N; n++ { | ||
comps[n](got) | ||
} | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.