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"
|
2020-11-12 16:28:32 +01:00
|
|
|
"go.opentelemetry.io/otel/metric"
|
2020-08-13 15:47:17 -07:00
|
|
|
export "go.opentelemetry.io/otel/sdk/export/metric"
|
|
|
|
metricsdk "go.opentelemetry.io/otel/sdk/metric"
|
|
|
|
"go.opentelemetry.io/otel/sdk/metric/processor/basic"
|
|
|
|
processorTest "go.opentelemetry.io/otel/sdk/metric/processor/processortest"
|
|
|
|
"go.opentelemetry.io/otel/sdk/metric/processor/reducer"
|
|
|
|
"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{}
|
|
|
|
|
2021-02-18 12:59:37 -05:00
|
|
|
func (testFilter) LabelFilterFor(_ *metric.Descriptor) attribute.Filter {
|
|
|
|
return func(label attribute.KeyValue) bool {
|
2020-08-13 15:47:17 -07:00
|
|
|
return label.Key == "A" || label.Key == "C"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-12 16:28:32 +01:00
|
|
|
func generateData(impl metric.MeterImpl) {
|
2020-08-13 15:47:17 -07:00
|
|
|
ctx := context.Background()
|
2020-11-12 16:28:32 +01:00
|
|
|
meter := metric.WrapMeterImpl(impl, "testing")
|
2020-08-13 15:47:17 -07:00
|
|
|
|
2020-11-12 16:28:32 +01:00
|
|
|
counter := metric.Must(meter).NewFloat64Counter("counter.sum")
|
2020-08-13 15:47:17 -07:00
|
|
|
|
2021-09-01 13:38:37 -07:00
|
|
|
_ = metric.Must(meter).NewInt64CounterObserver("observer.sum",
|
2020-11-12 16:28:32 +01:00
|
|
|
func(_ context.Context, result metric.Int64ObserverResult) {
|
2020-08-13 15:47:17 -07:00
|
|
|
result.Observe(10, kvs1...)
|
|
|
|
result.Observe(10, kvs2...)
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
counter.Add(ctx, 100, kvs1...)
|
|
|
|
counter.Add(ctx, 100, kvs2...)
|
|
|
|
}
|
|
|
|
|
|
|
|
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(
|
|
|
|
reducer.New(testFilter{}, processorTest.Checkpointer(testProc)),
|
|
|
|
)
|
|
|
|
generateData(accum)
|
|
|
|
|
|
|
|
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) {
|
2020-11-10 07:44:42 -08:00
|
|
|
basicProc := basic.New(processorTest.AggregatorSelector(), export.CumulativeExportKindSelector())
|
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
|
|
|
|
|
|
|
generateData(accum)
|
|
|
|
|
|
|
|
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"))
|
|
|
|
require.NoError(t, exporter.Export(context.Background(), res, basicProc.CheckpointSet()))
|
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())
|
|
|
|
}
|