mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-03-03 14:52:56 +02:00
* Empty All of the metrics dir * Add instrument api with documentation * Add a NoOp implementation. * Updated to the new config standard * Address PR comments * This change moves components to sdk/metrics The Moved components are: - metric/metrictest - metric/number - metric/internal/registry - metric/sdkapi * The SDK changes necessary to satasify the new api * This fixes the remaing tests. * Update changelog * refactor the Noop meter and instruments into one package. * Renamed pkg.Instruments to pkg.InstrumentProvider Co-authored-by: Aaron Clawson <MadVikingGod@users.noreply.github.com>
155 lines
4.1 KiB
Go
155 lines
4.1 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 sum
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
"unsafe"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
ottest "go.opentelemetry.io/otel/internal/internaltest"
|
|
"go.opentelemetry.io/otel/sdk/metric/aggregator"
|
|
"go.opentelemetry.io/otel/sdk/metric/aggregator/aggregatortest"
|
|
"go.opentelemetry.io/otel/sdk/metric/number"
|
|
"go.opentelemetry.io/otel/sdk/metric/sdkapi"
|
|
)
|
|
|
|
const count = 100
|
|
|
|
// Ensure struct alignment prior to running tests.
|
|
func TestMain(m *testing.M) {
|
|
fields := []ottest.FieldOffset{
|
|
{
|
|
Name: "Aggregator.value",
|
|
Offset: unsafe.Offsetof(Aggregator{}.value),
|
|
},
|
|
}
|
|
if !ottest.Aligned8Byte(fields, os.Stderr) {
|
|
os.Exit(1)
|
|
}
|
|
|
|
os.Exit(m.Run())
|
|
}
|
|
|
|
func new2() (_, _ *Aggregator) {
|
|
alloc := New(2)
|
|
return &alloc[0], &alloc[1]
|
|
}
|
|
|
|
func new4() (_, _, _, _ *Aggregator) {
|
|
alloc := New(4)
|
|
return &alloc[0], &alloc[1], &alloc[2], &alloc[3]
|
|
}
|
|
|
|
func checkZero(t *testing.T, agg *Aggregator, desc *sdkapi.Descriptor) {
|
|
kind := desc.NumberKind()
|
|
|
|
sum, err := agg.Sum()
|
|
require.NoError(t, err)
|
|
require.Equal(t, kind.Zero(), sum)
|
|
}
|
|
|
|
func TestCounterSum(t *testing.T) {
|
|
aggregatortest.RunProfiles(t, func(t *testing.T, profile aggregatortest.Profile) {
|
|
agg, ckpt := new2()
|
|
|
|
descriptor := aggregatortest.NewAggregatorTest(sdkapi.CounterInstrumentKind, profile.NumberKind)
|
|
|
|
sum := number.Number(0)
|
|
for i := 0; i < count; i++ {
|
|
x := profile.Random(+1)
|
|
sum.AddNumber(profile.NumberKind, x)
|
|
aggregatortest.CheckedUpdate(t, agg, x, descriptor)
|
|
}
|
|
|
|
err := agg.SynchronizedMove(ckpt, descriptor)
|
|
require.NoError(t, err)
|
|
|
|
checkZero(t, agg, descriptor)
|
|
|
|
asum, err := ckpt.Sum()
|
|
require.Equal(t, sum, asum, "Same sum - monotonic")
|
|
require.Nil(t, err)
|
|
})
|
|
}
|
|
|
|
func TestHistogramSum(t *testing.T) {
|
|
aggregatortest.RunProfiles(t, func(t *testing.T, profile aggregatortest.Profile) {
|
|
agg, ckpt := new2()
|
|
|
|
descriptor := aggregatortest.NewAggregatorTest(sdkapi.HistogramInstrumentKind, profile.NumberKind)
|
|
|
|
sum := number.Number(0)
|
|
|
|
for i := 0; i < count; i++ {
|
|
r1 := profile.Random(+1)
|
|
r2 := profile.Random(-1)
|
|
aggregatortest.CheckedUpdate(t, agg, r1, descriptor)
|
|
aggregatortest.CheckedUpdate(t, agg, r2, descriptor)
|
|
sum.AddNumber(profile.NumberKind, r1)
|
|
sum.AddNumber(profile.NumberKind, r2)
|
|
}
|
|
|
|
require.NoError(t, agg.SynchronizedMove(ckpt, descriptor))
|
|
checkZero(t, agg, descriptor)
|
|
|
|
asum, err := ckpt.Sum()
|
|
require.Equal(t, sum, asum, "Same sum - monotonic")
|
|
require.Nil(t, err)
|
|
})
|
|
}
|
|
|
|
func TestCounterMerge(t *testing.T) {
|
|
aggregatortest.RunProfiles(t, func(t *testing.T, profile aggregatortest.Profile) {
|
|
agg1, agg2, ckpt1, ckpt2 := new4()
|
|
|
|
descriptor := aggregatortest.NewAggregatorTest(sdkapi.CounterInstrumentKind, profile.NumberKind)
|
|
|
|
sum := number.Number(0)
|
|
for i := 0; i < count; i++ {
|
|
x := profile.Random(+1)
|
|
sum.AddNumber(profile.NumberKind, x)
|
|
aggregatortest.CheckedUpdate(t, agg1, x, descriptor)
|
|
aggregatortest.CheckedUpdate(t, agg2, x, descriptor)
|
|
}
|
|
|
|
require.NoError(t, agg1.SynchronizedMove(ckpt1, descriptor))
|
|
require.NoError(t, agg2.SynchronizedMove(ckpt2, descriptor))
|
|
|
|
checkZero(t, agg1, descriptor)
|
|
checkZero(t, agg2, descriptor)
|
|
|
|
aggregatortest.CheckedMerge(t, ckpt1, ckpt2, descriptor)
|
|
|
|
sum.AddNumber(descriptor.NumberKind(), sum)
|
|
|
|
asum, err := ckpt1.Sum()
|
|
require.Equal(t, sum, asum, "Same sum - monotonic")
|
|
require.Nil(t, err)
|
|
})
|
|
}
|
|
|
|
func TestSynchronizedMoveReset(t *testing.T) {
|
|
aggregatortest.SynchronizedMoveResetTest(
|
|
t,
|
|
sdkapi.CounterObserverInstrumentKind,
|
|
func(desc *sdkapi.Descriptor) aggregator.Aggregator {
|
|
return &New(1)[0]
|
|
},
|
|
)
|
|
}
|