mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-03-31 21:55:32 +02:00
Resolve #3544 Replace all custom implementations for multi-error unification with the `errors.Join` function of the standard library.
304 lines
8.7 KiB
Go
304 lines
8.7 KiB
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package metric
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/google/go-cmp/cmp"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"go.opentelemetry.io/otel/attribute"
|
|
ottest "go.opentelemetry.io/otel/sdk/internal/internaltest"
|
|
"go.opentelemetry.io/otel/sdk/metric/exemplar"
|
|
"go.opentelemetry.io/otel/sdk/metric/metricdata"
|
|
"go.opentelemetry.io/otel/sdk/resource"
|
|
"go.opentelemetry.io/otel/trace"
|
|
)
|
|
|
|
type reader struct {
|
|
producer sdkProducer
|
|
externalProducers []Producer
|
|
temporalityFunc TemporalitySelector
|
|
aggregationFunc AggregationSelector
|
|
collectFunc func(context.Context, *metricdata.ResourceMetrics) error
|
|
forceFlushFunc func(context.Context) error
|
|
shutdownFunc func(context.Context) error
|
|
}
|
|
|
|
const envVarResourceAttributes = "OTEL_RESOURCE_ATTRIBUTES"
|
|
|
|
var _ Reader = (*reader)(nil)
|
|
|
|
func (r *reader) aggregation(kind InstrumentKind) Aggregation { // nolint:revive // import-shadow for method scoped by type.
|
|
return r.aggregationFunc(kind)
|
|
}
|
|
|
|
func (r *reader) register(p sdkProducer) { r.producer = p }
|
|
func (r *reader) RegisterProducer(p Producer) { r.externalProducers = append(r.externalProducers, p) }
|
|
func (r *reader) temporality(kind InstrumentKind) metricdata.Temporality {
|
|
return r.temporalityFunc(kind)
|
|
}
|
|
|
|
func (r *reader) Collect(ctx context.Context, rm *metricdata.ResourceMetrics) error {
|
|
return r.collectFunc(ctx, rm)
|
|
}
|
|
func (r *reader) ForceFlush(ctx context.Context) error { return r.forceFlushFunc(ctx) }
|
|
func (r *reader) Shutdown(ctx context.Context) error { return r.shutdownFunc(ctx) }
|
|
|
|
func TestConfigReaderSignalsEmpty(t *testing.T) {
|
|
f, s := config{}.readerSignals()
|
|
|
|
require.NotNil(t, f)
|
|
require.NotNil(t, s)
|
|
|
|
ctx := context.Background()
|
|
assert.NoError(t, f(ctx))
|
|
assert.NoError(t, s(ctx))
|
|
assert.ErrorIs(t, s(ctx), ErrReaderShutdown)
|
|
}
|
|
|
|
func TestConfigReaderSignalsForwarded(t *testing.T) {
|
|
var flush, sdown int
|
|
r := &reader{
|
|
forceFlushFunc: func(ctx context.Context) error {
|
|
flush++
|
|
return nil
|
|
},
|
|
shutdownFunc: func(ctx context.Context) error {
|
|
sdown++
|
|
return nil
|
|
},
|
|
}
|
|
c := newConfig([]Option{WithReader(r)})
|
|
f, s := c.readerSignals()
|
|
|
|
require.NotNil(t, f)
|
|
require.NotNil(t, s)
|
|
|
|
ctx := context.Background()
|
|
assert.NoError(t, f(ctx))
|
|
assert.NoError(t, f(ctx))
|
|
assert.NoError(t, s(ctx))
|
|
assert.ErrorIs(t, s(ctx), ErrReaderShutdown)
|
|
|
|
assert.Equal(t, 2, flush, "flush not called 2 times")
|
|
assert.Equal(t, 1, sdown, "shutdown not called 1 time")
|
|
}
|
|
|
|
func TestConfigReaderSignalsForwardedErrors(t *testing.T) {
|
|
r := &reader{
|
|
forceFlushFunc: func(ctx context.Context) error { return assert.AnError },
|
|
shutdownFunc: func(ctx context.Context) error { return assert.AnError },
|
|
}
|
|
c := newConfig([]Option{WithReader(r)})
|
|
f, s := c.readerSignals()
|
|
|
|
require.NotNil(t, f)
|
|
require.NotNil(t, s)
|
|
|
|
ctx := context.Background()
|
|
assert.ErrorIs(t, f(ctx), assert.AnError)
|
|
assert.ErrorIs(t, s(ctx), assert.AnError)
|
|
assert.ErrorIs(t, s(ctx), ErrReaderShutdown)
|
|
}
|
|
|
|
func TestUnifyMultiError(t *testing.T) {
|
|
var (
|
|
e0 = errors.New("0")
|
|
e1 = errors.New("1")
|
|
e2 = errors.New("2")
|
|
)
|
|
err := unify([]func(context.Context) error{
|
|
func(ctx context.Context) error { return e0 },
|
|
func(ctx context.Context) error { return e1 },
|
|
func(ctx context.Context) error { return e2 },
|
|
})(context.Background())
|
|
assert.ErrorIs(t, err, e0)
|
|
assert.ErrorIs(t, err, e1)
|
|
assert.ErrorIs(t, err, e2)
|
|
}
|
|
|
|
func mergeResource(t *testing.T, r1, r2 *resource.Resource) *resource.Resource {
|
|
r, err := resource.Merge(r1, r2)
|
|
assert.NoError(t, err)
|
|
return r
|
|
}
|
|
|
|
func TestWithResource(t *testing.T) {
|
|
store, err := ottest.SetEnvVariables(map[string]string{
|
|
envVarResourceAttributes: "key=value,rk5=7",
|
|
})
|
|
require.NoError(t, err)
|
|
defer func() { require.NoError(t, store.Restore()) }()
|
|
|
|
cases := []struct {
|
|
name string
|
|
options []Option
|
|
want *resource.Resource
|
|
msg string
|
|
}{
|
|
{
|
|
name: "explicitly empty resource",
|
|
options: []Option{WithResource(resource.Empty())},
|
|
want: resource.Environment(),
|
|
},
|
|
{
|
|
name: "uses default if no resource option",
|
|
options: []Option{},
|
|
want: resource.Default(),
|
|
},
|
|
{
|
|
name: "explicit resource",
|
|
options: []Option{WithResource(resource.NewSchemaless(attribute.String("rk1", "rv1"), attribute.Int64("rk2", 5)))},
|
|
want: mergeResource(t, resource.Environment(), resource.NewSchemaless(attribute.String("rk1", "rv1"), attribute.Int64("rk2", 5))),
|
|
},
|
|
{
|
|
name: "last resource wins",
|
|
options: []Option{
|
|
WithResource(resource.NewSchemaless(attribute.String("rk1", "vk1"), attribute.Int64("rk2", 5))),
|
|
WithResource(resource.NewSchemaless(attribute.String("rk3", "rv3"), attribute.Int64("rk4", 10))),
|
|
},
|
|
want: mergeResource(t, resource.Environment(), resource.NewSchemaless(attribute.String("rk3", "rv3"), attribute.Int64("rk4", 10))),
|
|
},
|
|
{
|
|
name: "overlapping attributes with environment resource",
|
|
options: []Option{WithResource(resource.NewSchemaless(attribute.String("rk1", "rv1"), attribute.Int64("rk5", 10)))},
|
|
want: mergeResource(t, resource.Environment(), resource.NewSchemaless(attribute.String("rk1", "rv1"), attribute.Int64("rk5", 10))),
|
|
},
|
|
}
|
|
for _, tc := range cases {
|
|
tc := tc
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
got := newConfig(tc.options).res
|
|
if diff := cmp.Diff(got, tc.want); diff != "" {
|
|
t.Errorf("WithResource:\n -got +want %s", diff)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestWithReader(t *testing.T) {
|
|
r := &reader{}
|
|
c := newConfig([]Option{WithReader(r)})
|
|
require.Len(t, c.readers, 1)
|
|
assert.Same(t, r, c.readers[0])
|
|
}
|
|
|
|
func TestWithView(t *testing.T) {
|
|
c := newConfig([]Option{WithView(
|
|
NewView(
|
|
Instrument{Kind: InstrumentKindObservableCounter},
|
|
Stream{Name: "a"},
|
|
),
|
|
NewView(
|
|
Instrument{Kind: InstrumentKindCounter},
|
|
Stream{Name: "b"},
|
|
),
|
|
)})
|
|
assert.Len(t, c.views, 2)
|
|
}
|
|
|
|
func TestWithExemplarFilterOff(t *testing.T) {
|
|
for _, tc := range []struct {
|
|
desc string
|
|
opts []Option
|
|
env string
|
|
expectFilterSampled bool
|
|
expectFilterNotSampled bool
|
|
}{
|
|
{
|
|
desc: "default",
|
|
expectFilterSampled: true,
|
|
expectFilterNotSampled: false,
|
|
},
|
|
{
|
|
desc: "always on option",
|
|
opts: []Option{WithExemplarFilter(exemplar.AlwaysOnFilter)},
|
|
expectFilterSampled: true,
|
|
expectFilterNotSampled: true,
|
|
},
|
|
{
|
|
desc: "always off option",
|
|
opts: []Option{WithExemplarFilter(exemplar.AlwaysOffFilter)},
|
|
expectFilterSampled: false,
|
|
expectFilterNotSampled: false,
|
|
},
|
|
{
|
|
desc: "trace based option",
|
|
opts: []Option{WithExemplarFilter(exemplar.TraceBasedFilter)},
|
|
expectFilterSampled: true,
|
|
expectFilterNotSampled: false,
|
|
},
|
|
{
|
|
desc: "last option takes precedence",
|
|
opts: []Option{
|
|
WithExemplarFilter(exemplar.AlwaysOffFilter),
|
|
WithExemplarFilter(exemplar.AlwaysOnFilter),
|
|
},
|
|
expectFilterSampled: true,
|
|
expectFilterNotSampled: true,
|
|
},
|
|
{
|
|
desc: "always_off env",
|
|
env: "always_off",
|
|
expectFilterSampled: false,
|
|
expectFilterNotSampled: false,
|
|
},
|
|
{
|
|
desc: "always_on env",
|
|
env: "always_on",
|
|
expectFilterSampled: true,
|
|
expectFilterNotSampled: true,
|
|
},
|
|
{
|
|
desc: "always_on case insensitiveenv",
|
|
env: "ALWAYS_ON",
|
|
expectFilterSampled: true,
|
|
expectFilterNotSampled: true,
|
|
},
|
|
{
|
|
desc: "trace_based env",
|
|
env: "trace_based",
|
|
expectFilterSampled: true,
|
|
expectFilterNotSampled: false,
|
|
},
|
|
{
|
|
desc: "wrong env",
|
|
env: "foo_bar",
|
|
expectFilterSampled: true,
|
|
expectFilterNotSampled: false,
|
|
},
|
|
{
|
|
desc: "option takes precedence over env var",
|
|
env: "always_off",
|
|
opts: []Option{WithExemplarFilter(exemplar.AlwaysOnFilter)},
|
|
expectFilterSampled: true,
|
|
expectFilterNotSampled: true,
|
|
},
|
|
} {
|
|
t.Run(tc.desc, func(t *testing.T) {
|
|
if tc.env != "" {
|
|
t.Setenv("OTEL_METRICS_EXEMPLAR_FILTER", tc.env)
|
|
}
|
|
c := newConfig(tc.opts)
|
|
assert.NotNil(t, c.exemplarFilter)
|
|
assert.Equal(t, tc.expectFilterNotSampled, c.exemplarFilter(context.Background()))
|
|
assert.Equal(t, tc.expectFilterSampled, c.exemplarFilter(sample(context.Background())))
|
|
})
|
|
}
|
|
}
|
|
|
|
func sample(parent context.Context) context.Context {
|
|
sc := trace.NewSpanContext(trace.SpanContextConfig{
|
|
TraceID: trace.TraceID{0x01},
|
|
SpanID: trace.SpanID{0x01},
|
|
TraceFlags: trace.FlagsSampled,
|
|
})
|
|
return trace.ContextWithSpanContext(parent, sc)
|
|
}
|