mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-14 10:13:10 +02:00
f0855b7d08
Co-authored-by: Joshua MacDonald <jmacd@users.noreply.github.com>
298 lines
9.0 KiB
Go
298 lines
9.0 KiB
Go
// 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 transform
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"testing"
|
|
|
|
commonpb "github.com/open-telemetry/opentelemetry-proto/gen/go/common/v1"
|
|
metricpb "github.com/open-telemetry/opentelemetry-proto/gen/go/metrics/v1"
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"go.opentelemetry.io/otel/api/core"
|
|
"go.opentelemetry.io/otel/api/key"
|
|
"go.opentelemetry.io/otel/api/label"
|
|
"go.opentelemetry.io/otel/api/metric"
|
|
"go.opentelemetry.io/otel/api/unit"
|
|
"go.opentelemetry.io/otel/sdk/export/metric/aggregator"
|
|
"go.opentelemetry.io/otel/sdk/metric/aggregator/minmaxsumcount"
|
|
sumAgg "go.opentelemetry.io/otel/sdk/metric/aggregator/sum"
|
|
)
|
|
|
|
func TestStringKeyValues(t *testing.T) {
|
|
tests := []struct {
|
|
kvs []core.KeyValue
|
|
expected []*commonpb.StringKeyValue
|
|
}{
|
|
{
|
|
nil,
|
|
nil,
|
|
},
|
|
{
|
|
[]core.KeyValue{},
|
|
nil,
|
|
},
|
|
{
|
|
[]core.KeyValue{
|
|
key.Bool("true", true),
|
|
key.Int64("one", 1),
|
|
key.Uint64("two", 2),
|
|
key.Float64("three", 3),
|
|
key.Int32("four", 4),
|
|
key.Uint32("five", 5),
|
|
key.Float32("six", 6),
|
|
key.Int("seven", 7),
|
|
key.Uint("eight", 8),
|
|
key.String("the", "final word"),
|
|
},
|
|
[]*commonpb.StringKeyValue{
|
|
{Key: "eight", Value: "8"},
|
|
{Key: "five", Value: "5"},
|
|
{Key: "four", Value: "4"},
|
|
{Key: "one", Value: "1"},
|
|
{Key: "seven", Value: "7"},
|
|
{Key: "six", Value: "6"},
|
|
{Key: "the", Value: "final word"},
|
|
{Key: "three", Value: "3"},
|
|
{Key: "true", Value: "true"},
|
|
{Key: "two", Value: "2"},
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
labels := label.NewSet(test.kvs...)
|
|
assert.Equal(t, test.expected, stringKeyValues(labels.Iter()))
|
|
}
|
|
}
|
|
|
|
func TestMinMaxSumCountValue(t *testing.T) {
|
|
mmsc := minmaxsumcount.New(&metric.Descriptor{})
|
|
assert.NoError(t, mmsc.Update(context.Background(), 1, &metric.Descriptor{}))
|
|
assert.NoError(t, mmsc.Update(context.Background(), 10, &metric.Descriptor{}))
|
|
|
|
// Prior to checkpointing ErrNoData should be returned.
|
|
_, _, _, _, err := minMaxSumCountValues(mmsc)
|
|
assert.EqualError(t, err, aggregator.ErrNoData.Error())
|
|
|
|
// Checkpoint to set non-zero values
|
|
mmsc.Checkpoint(context.Background(), &metric.Descriptor{})
|
|
min, max, sum, count, err := minMaxSumCountValues(mmsc)
|
|
if assert.NoError(t, err) {
|
|
assert.Equal(t, min, metric.NewInt64Number(1))
|
|
assert.Equal(t, max, metric.NewInt64Number(10))
|
|
assert.Equal(t, sum, metric.NewInt64Number(11))
|
|
assert.Equal(t, count, int64(2))
|
|
}
|
|
}
|
|
|
|
func TestMinMaxSumCountMetricDescriptor(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
metricKind metric.Kind
|
|
description string
|
|
unit unit.Unit
|
|
numberKind metric.NumberKind
|
|
labels []core.KeyValue
|
|
expected *metricpb.MetricDescriptor
|
|
}{
|
|
{
|
|
"mmsc-test-a",
|
|
metric.MeasureKind,
|
|
"test-a-description",
|
|
unit.Dimensionless,
|
|
metric.Int64NumberKind,
|
|
[]core.KeyValue{},
|
|
&metricpb.MetricDescriptor{
|
|
Name: "mmsc-test-a",
|
|
Description: "test-a-description",
|
|
Unit: "1",
|
|
Type: metricpb.MetricDescriptor_SUMMARY,
|
|
Labels: nil,
|
|
},
|
|
},
|
|
{
|
|
"mmsc-test-b",
|
|
metric.CounterKind, // This shouldn't change anything.
|
|
"test-b-description",
|
|
unit.Bytes,
|
|
metric.Float64NumberKind, // This shouldn't change anything.
|
|
[]core.KeyValue{key.String("A", "1")},
|
|
&metricpb.MetricDescriptor{
|
|
Name: "mmsc-test-b",
|
|
Description: "test-b-description",
|
|
Unit: "By",
|
|
Type: metricpb.MetricDescriptor_SUMMARY,
|
|
Labels: []*commonpb.StringKeyValue{{Key: "A", Value: "1"}},
|
|
},
|
|
},
|
|
}
|
|
|
|
ctx := context.Background()
|
|
mmsc := minmaxsumcount.New(&metric.Descriptor{})
|
|
if !assert.NoError(t, mmsc.Update(ctx, 1, &metric.Descriptor{})) {
|
|
return
|
|
}
|
|
mmsc.Checkpoint(ctx, &metric.Descriptor{})
|
|
for _, test := range tests {
|
|
desc := metric.NewDescriptor(test.name, test.metricKind, test.numberKind,
|
|
metric.WithDescription(test.description),
|
|
metric.WithUnit(test.unit))
|
|
labels := label.NewSet(test.labels...)
|
|
got, err := minMaxSumCount(&desc, &labels, mmsc)
|
|
if assert.NoError(t, err) {
|
|
assert.Equal(t, test.expected, got.MetricDescriptor)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestMinMaxSumCountDatapoints(t *testing.T) {
|
|
desc := metric.NewDescriptor("", metric.MeasureKind, metric.Int64NumberKind)
|
|
labels := label.NewSet()
|
|
mmsc := minmaxsumcount.New(&desc)
|
|
assert.NoError(t, mmsc.Update(context.Background(), 1, &desc))
|
|
assert.NoError(t, mmsc.Update(context.Background(), 10, &desc))
|
|
mmsc.Checkpoint(context.Background(), &desc)
|
|
expected := []*metricpb.SummaryDataPoint{
|
|
{
|
|
Count: 2,
|
|
Sum: 11,
|
|
PercentileValues: []*metricpb.SummaryDataPoint_ValueAtPercentile{
|
|
{
|
|
Percentile: 0.0,
|
|
Value: 1,
|
|
},
|
|
{
|
|
Percentile: 100.0,
|
|
Value: 10,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
m, err := minMaxSumCount(&desc, &labels, mmsc)
|
|
if assert.NoError(t, err) {
|
|
assert.Equal(t, []*metricpb.Int64DataPoint(nil), m.Int64DataPoints)
|
|
assert.Equal(t, []*metricpb.DoubleDataPoint(nil), m.DoubleDataPoints)
|
|
assert.Equal(t, []*metricpb.HistogramDataPoint(nil), m.HistogramDataPoints)
|
|
assert.Equal(t, expected, m.SummaryDataPoints)
|
|
}
|
|
}
|
|
|
|
func TestMinMaxSumCountPropagatesErrors(t *testing.T) {
|
|
// ErrNoData should be returned by both the Min and Max values of
|
|
// a MinMaxSumCount Aggregator. Use this fact to check the error is
|
|
// correctly returned.
|
|
mmsc := minmaxsumcount.New(&metric.Descriptor{})
|
|
_, _, _, _, err := minMaxSumCountValues(mmsc)
|
|
assert.Error(t, err)
|
|
assert.Equal(t, aggregator.ErrNoData, err)
|
|
}
|
|
|
|
func TestSumMetricDescriptor(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
metricKind metric.Kind
|
|
description string
|
|
unit unit.Unit
|
|
numberKind metric.NumberKind
|
|
labels []core.KeyValue
|
|
expected *metricpb.MetricDescriptor
|
|
}{
|
|
{
|
|
"sum-test-a",
|
|
metric.CounterKind,
|
|
"test-a-description",
|
|
unit.Dimensionless,
|
|
metric.Int64NumberKind,
|
|
[]core.KeyValue{},
|
|
&metricpb.MetricDescriptor{
|
|
Name: "sum-test-a",
|
|
Description: "test-a-description",
|
|
Unit: "1",
|
|
Type: metricpb.MetricDescriptor_COUNTER_INT64,
|
|
Labels: nil,
|
|
},
|
|
},
|
|
{
|
|
"sum-test-b",
|
|
metric.MeasureKind, // This shouldn't change anything.
|
|
"test-b-description",
|
|
unit.Milliseconds,
|
|
metric.Float64NumberKind,
|
|
[]core.KeyValue{key.String("A", "1")},
|
|
&metricpb.MetricDescriptor{
|
|
Name: "sum-test-b",
|
|
Description: "test-b-description",
|
|
Unit: "ms",
|
|
Type: metricpb.MetricDescriptor_COUNTER_DOUBLE,
|
|
Labels: []*commonpb.StringKeyValue{{Key: "A", Value: "1"}},
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
desc := metric.NewDescriptor(test.name, test.metricKind, test.numberKind,
|
|
metric.WithDescription(test.description),
|
|
metric.WithUnit(test.unit),
|
|
)
|
|
labels := label.NewSet(test.labels...)
|
|
got, err := sum(&desc, &labels, sumAgg.New())
|
|
if assert.NoError(t, err) {
|
|
assert.Equal(t, test.expected, got.MetricDescriptor)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestSumInt64DataPoints(t *testing.T) {
|
|
desc := metric.NewDescriptor("", metric.MeasureKind, metric.Int64NumberKind)
|
|
labels := label.NewSet()
|
|
s := sumAgg.New()
|
|
assert.NoError(t, s.Update(context.Background(), metric.Number(1), &desc))
|
|
s.Checkpoint(context.Background(), &desc)
|
|
if m, err := sum(&desc, &labels, s); assert.NoError(t, err) {
|
|
assert.Equal(t, []*metricpb.Int64DataPoint{{Value: 1}}, m.Int64DataPoints)
|
|
assert.Equal(t, []*metricpb.DoubleDataPoint(nil), m.DoubleDataPoints)
|
|
assert.Equal(t, []*metricpb.HistogramDataPoint(nil), m.HistogramDataPoints)
|
|
assert.Equal(t, []*metricpb.SummaryDataPoint(nil), m.SummaryDataPoints)
|
|
}
|
|
}
|
|
|
|
func TestSumFloat64DataPoints(t *testing.T) {
|
|
desc := metric.NewDescriptor("", metric.MeasureKind, metric.Float64NumberKind)
|
|
labels := label.NewSet()
|
|
s := sumAgg.New()
|
|
assert.NoError(t, s.Update(context.Background(), metric.NewFloat64Number(1), &desc))
|
|
s.Checkpoint(context.Background(), &desc)
|
|
if m, err := sum(&desc, &labels, s); assert.NoError(t, err) {
|
|
assert.Equal(t, []*metricpb.Int64DataPoint(nil), m.Int64DataPoints)
|
|
assert.Equal(t, []*metricpb.DoubleDataPoint{{Value: 1}}, m.DoubleDataPoints)
|
|
assert.Equal(t, []*metricpb.HistogramDataPoint(nil), m.HistogramDataPoints)
|
|
assert.Equal(t, []*metricpb.SummaryDataPoint(nil), m.SummaryDataPoints)
|
|
}
|
|
}
|
|
|
|
func TestSumErrUnknownValueType(t *testing.T) {
|
|
desc := metric.NewDescriptor("", metric.MeasureKind, metric.NumberKind(-1))
|
|
labels := label.NewSet()
|
|
s := sumAgg.New()
|
|
_, err := sum(&desc, &labels, s)
|
|
assert.Error(t, err)
|
|
if !errors.Is(err, ErrUnknownValueType) {
|
|
t.Errorf("expected ErrUnknownValueType, got %v", err)
|
|
}
|
|
}
|