2020-08-13 15:47:17 -07:00
|
|
|
// 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 reducer_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
|
2021-02-18 12:59:37 -05:00
|
|
|
"go.opentelemetry.io/otel/attribute"
|
2022-03-02 09:50:29 -06:00
|
|
|
"go.opentelemetry.io/otel/metric/instrument"
|
2021-09-27 08:51:47 -07:00
|
|
|
"go.opentelemetry.io/otel/sdk/instrumentation"
|
2020-08-13 15:47:17 -07:00
|
|
|
metricsdk "go.opentelemetry.io/otel/sdk/metric"
|
2021-12-13 12:13:03 -08:00
|
|
|
"go.opentelemetry.io/otel/sdk/metric/export/aggregation"
|
2020-08-13 15:47:17 -07:00
|
|
|
"go.opentelemetry.io/otel/sdk/metric/processor/basic"
|
2021-09-27 08:51:47 -07:00
|
|
|
"go.opentelemetry.io/otel/sdk/metric/processor/processortest"
|
2020-08-13 15:47:17 -07:00
|
|
|
processorTest "go.opentelemetry.io/otel/sdk/metric/processor/processortest"
|
|
|
|
"go.opentelemetry.io/otel/sdk/metric/processor/reducer"
|
2022-03-02 09:50:29 -06:00
|
|
|
"go.opentelemetry.io/otel/sdk/metric/sdkapi"
|
2020-08-13 15:47:17 -07:00
|
|
|
"go.opentelemetry.io/otel/sdk/resource"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2021-02-18 12:59:37 -05:00
|
|
|
kvs1 = []attribute.KeyValue{
|
|
|
|
attribute.Int("A", 1),
|
|
|
|
attribute.Int("B", 2),
|
|
|
|
attribute.Int("C", 3),
|
2020-08-13 15:47:17 -07:00
|
|
|
}
|
2021-02-18 12:59:37 -05:00
|
|
|
kvs2 = []attribute.KeyValue{
|
|
|
|
attribute.Int("A", 1),
|
|
|
|
attribute.Int("B", 0),
|
|
|
|
attribute.Int("C", 3),
|
2020-08-13 15:47:17 -07:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
type testFilter struct{}
|
|
|
|
|
2022-04-18 07:31:31 -07:00
|
|
|
func (testFilter) AttributeFilterFor(_ *sdkapi.Descriptor) attribute.Filter {
|
|
|
|
return func(attr attribute.KeyValue) bool {
|
|
|
|
return attr.Key == "A" || attr.Key == "C"
|
2020-08-13 15:47:17 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-02 09:50:29 -06:00
|
|
|
func generateData(t *testing.T, impl sdkapi.MeterImpl) {
|
2020-08-13 15:47:17 -07:00
|
|
|
ctx := context.Background()
|
2022-03-02 09:50:29 -06:00
|
|
|
meter := sdkapi.WrapMeterImpl(impl)
|
2020-08-13 15:47:17 -07:00
|
|
|
|
2022-03-02 09:50:29 -06:00
|
|
|
counter, err := meter.SyncFloat64().Counter("counter.sum")
|
|
|
|
require.NoError(t, err)
|
2020-08-13 15:47:17 -07:00
|
|
|
counter.Add(ctx, 100, kvs1...)
|
|
|
|
counter.Add(ctx, 100, kvs2...)
|
2022-03-02 09:50:29 -06:00
|
|
|
|
|
|
|
counterObserver, err := meter.AsyncInt64().Counter("observer.sum")
|
|
|
|
require.NoError(t, err)
|
|
|
|
err = meter.RegisterCallback([]instrument.Asynchronous{counterObserver}, func(ctx context.Context) {
|
|
|
|
counterObserver.Observe(ctx, 10, kvs1...)
|
|
|
|
counterObserver.Observe(ctx, 10, kvs2...)
|
|
|
|
})
|
|
|
|
require.NoError(t, err)
|
2020-08-13 15:47:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestFilterProcessor(t *testing.T) {
|
|
|
|
testProc := processorTest.NewProcessor(
|
|
|
|
processorTest.AggregatorSelector(),
|
2021-02-18 12:59:37 -05:00
|
|
|
attribute.DefaultEncoder(),
|
2020-08-13 15:47:17 -07:00
|
|
|
)
|
|
|
|
accum := metricsdk.NewAccumulator(
|
2021-09-27 08:51:47 -07:00
|
|
|
reducer.New(testFilter{}, processorTest.NewCheckpointer(testProc)),
|
2020-08-13 15:47:17 -07:00
|
|
|
)
|
2022-03-02 09:50:29 -06:00
|
|
|
generateData(t, accum)
|
2020-08-13 15:47:17 -07:00
|
|
|
|
|
|
|
accum.Collect(context.Background())
|
|
|
|
|
|
|
|
require.EqualValues(t, map[string]float64{
|
2021-08-12 15:44:58 -07:00
|
|
|
"counter.sum/A=1,C=3/": 200,
|
|
|
|
"observer.sum/A=1,C=3/": 20,
|
2020-08-13 15:47:17 -07:00
|
|
|
}, testProc.Values())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test a filter with the ../basic Processor.
|
|
|
|
func TestFilterBasicProcessor(t *testing.T) {
|
2021-10-15 11:18:36 -07:00
|
|
|
basicProc := basic.New(processorTest.AggregatorSelector(), aggregation.CumulativeTemporalitySelector())
|
2020-08-13 15:47:17 -07:00
|
|
|
accum := metricsdk.NewAccumulator(
|
|
|
|
reducer.New(testFilter{}, basicProc),
|
|
|
|
)
|
2021-06-10 16:22:47 +00:00
|
|
|
exporter := processorTest.New(basicProc, attribute.DefaultEncoder())
|
2020-08-13 15:47:17 -07:00
|
|
|
|
2022-03-02 09:50:29 -06:00
|
|
|
generateData(t, accum)
|
2020-08-13 15:47:17 -07:00
|
|
|
|
|
|
|
basicProc.StartCollection()
|
|
|
|
accum.Collect(context.Background())
|
|
|
|
if err := basicProc.FinishCollection(); err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
2021-08-12 15:44:58 -07:00
|
|
|
res := resource.NewSchemaless(attribute.String("R", "V"))
|
2021-09-27 08:51:47 -07:00
|
|
|
require.NoError(t, exporter.Export(context.Background(), res, processortest.OneInstrumentationLibraryReader(instrumentation.Library{
|
|
|
|
Name: "test",
|
|
|
|
}, basicProc.Reader())))
|
2020-08-13 15:47:17 -07:00
|
|
|
|
|
|
|
require.EqualValues(t, map[string]float64{
|
|
|
|
"counter.sum/A=1,C=3/R=V": 200,
|
|
|
|
"observer.sum/A=1,C=3/R=V": 20,
|
|
|
|
}, exporter.Values())
|
|
|
|
}
|