mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-04-25 12:04:40 +02:00
* Update metric Kind to InstrumentKind * Update all the other modules with Kind rename * Update metric Descriptor with instrument Kind rename * Update other modules with Descriptor method rename * Update OTLP exporter test field name * Rename kind filenames * Add changes to CHANGELOG * Fix documentation for Grouping and PrecomputedSum * Rename meter.go to metric.go * Move descriptor.go into metric.go * Move must.go into metric.go * Move instruments into metric_instrument.go * Rename metric api_test.go to metric_test.go * Move instrumentkind_test.go into metric_test.go * Rename sdkapi.go metric_sdkapi.go * Move api/metric into otel * Update to use moved packages * Rename otel.go to error_handler.go * Add changes to CHANGELOG * Fix merge conflict resolution error
120 lines
3.5 KiB
Go
120 lines
3.5 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 pull_test
|
|
|
|
import (
|
|
"context"
|
|
"runtime"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"go.opentelemetry.io/otel"
|
|
"go.opentelemetry.io/otel/label"
|
|
export "go.opentelemetry.io/otel/sdk/export/metric"
|
|
"go.opentelemetry.io/otel/sdk/metric/controller/controllertest"
|
|
"go.opentelemetry.io/otel/sdk/metric/controller/pull"
|
|
"go.opentelemetry.io/otel/sdk/metric/processor/basic"
|
|
"go.opentelemetry.io/otel/sdk/metric/processor/processortest"
|
|
selector "go.opentelemetry.io/otel/sdk/metric/selector/simple"
|
|
)
|
|
|
|
func TestPullNoCache(t *testing.T) {
|
|
puller := pull.New(
|
|
basic.New(
|
|
selector.NewWithExactDistribution(),
|
|
export.CumulativeExporter,
|
|
basic.WithMemory(true),
|
|
),
|
|
pull.WithCachePeriod(0),
|
|
)
|
|
|
|
ctx := context.Background()
|
|
meter := puller.MeterProvider().Meter("nocache")
|
|
counter := otel.Must(meter).NewInt64Counter("counter.sum")
|
|
|
|
counter.Add(ctx, 10, label.String("A", "B"))
|
|
|
|
require.NoError(t, puller.Collect(ctx))
|
|
records := processortest.NewOutput(label.DefaultEncoder())
|
|
require.NoError(t, puller.ForEach(export.CumulativeExporter, records.AddRecord))
|
|
|
|
require.EqualValues(t, map[string]float64{
|
|
"counter.sum/A=B/": 10,
|
|
}, records.Map())
|
|
|
|
counter.Add(ctx, 10, label.String("A", "B"))
|
|
|
|
require.NoError(t, puller.Collect(ctx))
|
|
records = processortest.NewOutput(label.DefaultEncoder())
|
|
require.NoError(t, puller.ForEach(export.CumulativeExporter, records.AddRecord))
|
|
|
|
require.EqualValues(t, map[string]float64{
|
|
"counter.sum/A=B/": 20,
|
|
}, records.Map())
|
|
}
|
|
|
|
func TestPullWithCache(t *testing.T) {
|
|
puller := pull.New(
|
|
basic.New(
|
|
selector.NewWithExactDistribution(),
|
|
export.CumulativeExporter,
|
|
basic.WithMemory(true),
|
|
),
|
|
pull.WithCachePeriod(time.Second),
|
|
)
|
|
mock := controllertest.NewMockClock()
|
|
puller.SetClock(mock)
|
|
|
|
ctx := context.Background()
|
|
meter := puller.MeterProvider().Meter("nocache")
|
|
counter := otel.Must(meter).NewInt64Counter("counter.sum")
|
|
|
|
counter.Add(ctx, 10, label.String("A", "B"))
|
|
|
|
require.NoError(t, puller.Collect(ctx))
|
|
records := processortest.NewOutput(label.DefaultEncoder())
|
|
require.NoError(t, puller.ForEach(export.CumulativeExporter, records.AddRecord))
|
|
|
|
require.EqualValues(t, map[string]float64{
|
|
"counter.sum/A=B/": 10,
|
|
}, records.Map())
|
|
|
|
counter.Add(ctx, 10, label.String("A", "B"))
|
|
|
|
// Cached value!
|
|
require.NoError(t, puller.Collect(ctx))
|
|
records = processortest.NewOutput(label.DefaultEncoder())
|
|
require.NoError(t, puller.ForEach(export.CumulativeExporter, records.AddRecord))
|
|
|
|
require.EqualValues(t, map[string]float64{
|
|
"counter.sum/A=B/": 10,
|
|
}, records.Map())
|
|
|
|
mock.Add(time.Second)
|
|
runtime.Gosched()
|
|
|
|
// Re-computed value!
|
|
require.NoError(t, puller.Collect(ctx))
|
|
records = processortest.NewOutput(label.DefaultEncoder())
|
|
require.NoError(t, puller.ForEach(export.CumulativeExporter, records.AddRecord))
|
|
|
|
require.EqualValues(t, map[string]float64{
|
|
"counter.sum/A=B/": 20,
|
|
}, records.Map())
|
|
|
|
}
|