You've already forked opentelemetry-go
							
							
				mirror of
				https://github.com/open-telemetry/opentelemetry-go.git
				synced 2025-10-31 00:07:40 +02:00 
			
		
		
		
	* New label set API * Checkpoint * Remove label.Labels interface * Fix trace * Remove label storage * Restore metric_test.go * Tidy tests * More comments * More comments * Same changes as 654 * Checkpoint * Fix batch labels * Avoid Resource.Attributes() where possible * Update comments and restore order in resource.go * From feedback * From feedback * Move iterator_test & feedback * Strenghten the label.Set test * Feedback on typos * Fix the set test per @krnowak * Nit
		
			
				
	
	
		
			156 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			156 lines
		
	
	
		
			5.4 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 ungrouped_test
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/stretchr/testify/require"
 | |
| 
 | |
| 	"go.opentelemetry.io/otel/api/core"
 | |
| 	export "go.opentelemetry.io/otel/sdk/export/metric"
 | |
| 	"go.opentelemetry.io/otel/sdk/metric/batcher/test"
 | |
| 	"go.opentelemetry.io/otel/sdk/metric/batcher/ungrouped"
 | |
| )
 | |
| 
 | |
| // These tests use the ../test label encoding.
 | |
| 
 | |
| func TestUngroupedStateless(t *testing.T) {
 | |
| 	ctx := context.Background()
 | |
| 	b := ungrouped.New(test.NewAggregationSelector(), test.SdkEncoder, false)
 | |
| 
 | |
| 	// Set initial lastValue values
 | |
| 	_ = b.Process(ctx, test.NewLastValueRecord(&test.LastValueADesc, test.Labels1, 10))
 | |
| 	_ = b.Process(ctx, test.NewLastValueRecord(&test.LastValueADesc, test.Labels2, 20))
 | |
| 	_ = b.Process(ctx, test.NewLastValueRecord(&test.LastValueADesc, test.Labels3, 30))
 | |
| 
 | |
| 	_ = b.Process(ctx, test.NewLastValueRecord(&test.LastValueBDesc, test.Labels1, 10))
 | |
| 	_ = b.Process(ctx, test.NewLastValueRecord(&test.LastValueBDesc, test.Labels2, 20))
 | |
| 	_ = b.Process(ctx, test.NewLastValueRecord(&test.LastValueBDesc, test.Labels3, 30))
 | |
| 
 | |
| 	// Another lastValue Set for Labels1
 | |
| 	_ = b.Process(ctx, test.NewLastValueRecord(&test.LastValueADesc, test.Labels1, 50))
 | |
| 	_ = b.Process(ctx, test.NewLastValueRecord(&test.LastValueBDesc, test.Labels1, 50))
 | |
| 
 | |
| 	// Set initial counter values
 | |
| 	_ = b.Process(ctx, test.NewCounterRecord(&test.CounterADesc, test.Labels1, 10))
 | |
| 	_ = b.Process(ctx, test.NewCounterRecord(&test.CounterADesc, test.Labels2, 20))
 | |
| 	_ = b.Process(ctx, test.NewCounterRecord(&test.CounterADesc, test.Labels3, 40))
 | |
| 
 | |
| 	_ = b.Process(ctx, test.NewCounterRecord(&test.CounterBDesc, test.Labels1, 10))
 | |
| 	_ = b.Process(ctx, test.NewCounterRecord(&test.CounterBDesc, test.Labels2, 20))
 | |
| 	_ = b.Process(ctx, test.NewCounterRecord(&test.CounterBDesc, test.Labels3, 40))
 | |
| 
 | |
| 	// Another counter Add for Labels1
 | |
| 	_ = b.Process(ctx, test.NewCounterRecord(&test.CounterADesc, test.Labels1, 50))
 | |
| 	_ = b.Process(ctx, test.NewCounterRecord(&test.CounterBDesc, test.Labels1, 50))
 | |
| 
 | |
| 	checkpointSet := b.CheckpointSet()
 | |
| 	b.FinishedCollection()
 | |
| 
 | |
| 	records := test.NewOutput(test.SdkEncoder)
 | |
| 	_ = checkpointSet.ForEach(records.AddTo)
 | |
| 
 | |
| 	// Output lastvalue should have only the "G=H" and "G=" keys.
 | |
| 	// Output counter should have only the "C=D" and "C=" keys.
 | |
| 	require.EqualValues(t, map[string]float64{
 | |
| 		"sum.a/C~D&G~H":       60, // labels1
 | |
| 		"sum.a/C~D&E~F":       20, // labels2
 | |
| 		"sum.a/":              40, // labels3
 | |
| 		"sum.b/C~D&G~H":       60, // labels1
 | |
| 		"sum.b/C~D&E~F":       20, // labels2
 | |
| 		"sum.b/":              40, // labels3
 | |
| 		"lastvalue.a/C~D&G~H": 50, // labels1
 | |
| 		"lastvalue.a/C~D&E~F": 20, // labels2
 | |
| 		"lastvalue.a/":        30, // labels3
 | |
| 		"lastvalue.b/C~D&G~H": 50, // labels1
 | |
| 		"lastvalue.b/C~D&E~F": 20, // labels2
 | |
| 		"lastvalue.b/":        30, // labels3
 | |
| 	}, records.Map)
 | |
| 
 | |
| 	// Verify that state was reset
 | |
| 	checkpointSet = b.CheckpointSet()
 | |
| 	b.FinishedCollection()
 | |
| 	_ = checkpointSet.ForEach(func(rec export.Record) error {
 | |
| 		t.Fatal("Unexpected call")
 | |
| 		return nil
 | |
| 	})
 | |
| }
 | |
| 
 | |
| func TestUngroupedStateful(t *testing.T) {
 | |
| 	ctx := context.Background()
 | |
| 	b := ungrouped.New(test.NewAggregationSelector(), test.SdkEncoder, true)
 | |
| 
 | |
| 	counterA := test.NewCounterRecord(&test.CounterADesc, test.Labels1, 10)
 | |
| 	caggA := counterA.Aggregator()
 | |
| 	_ = b.Process(ctx, counterA)
 | |
| 
 | |
| 	counterB := test.NewCounterRecord(&test.CounterBDesc, test.Labels1, 10)
 | |
| 	caggB := counterB.Aggregator()
 | |
| 	_ = b.Process(ctx, counterB)
 | |
| 
 | |
| 	checkpointSet := b.CheckpointSet()
 | |
| 	b.FinishedCollection()
 | |
| 
 | |
| 	records1 := test.NewOutput(test.SdkEncoder)
 | |
| 	_ = checkpointSet.ForEach(records1.AddTo)
 | |
| 
 | |
| 	require.EqualValues(t, map[string]float64{
 | |
| 		"sum.a/C~D&G~H": 10, // labels1
 | |
| 		"sum.b/C~D&G~H": 10, // labels1
 | |
| 	}, records1.Map)
 | |
| 
 | |
| 	// Test that state was NOT reset
 | |
| 	checkpointSet = b.CheckpointSet()
 | |
| 	b.FinishedCollection()
 | |
| 
 | |
| 	records2 := test.NewOutput(test.SdkEncoder)
 | |
| 	_ = checkpointSet.ForEach(records2.AddTo)
 | |
| 
 | |
| 	require.EqualValues(t, records1.Map, records2.Map)
 | |
| 
 | |
| 	// Update and re-checkpoint the original record.
 | |
| 	_ = caggA.Update(ctx, core.NewInt64Number(20), &test.CounterADesc)
 | |
| 	_ = caggB.Update(ctx, core.NewInt64Number(20), &test.CounterBDesc)
 | |
| 	caggA.Checkpoint(ctx, &test.CounterADesc)
 | |
| 	caggB.Checkpoint(ctx, &test.CounterBDesc)
 | |
| 
 | |
| 	// As yet cagg has not been passed to Batcher.Process.  Should
 | |
| 	// not see an update.
 | |
| 	checkpointSet = b.CheckpointSet()
 | |
| 	b.FinishedCollection()
 | |
| 
 | |
| 	records3 := test.NewOutput(test.SdkEncoder)
 | |
| 	_ = checkpointSet.ForEach(records3.AddTo)
 | |
| 
 | |
| 	require.EqualValues(t, records1.Map, records3.Map)
 | |
| 
 | |
| 	// Now process the second update
 | |
| 	_ = b.Process(ctx, export.NewRecord(&test.CounterADesc, test.Labels1, caggA))
 | |
| 	_ = b.Process(ctx, export.NewRecord(&test.CounterBDesc, test.Labels1, caggB))
 | |
| 
 | |
| 	checkpointSet = b.CheckpointSet()
 | |
| 	b.FinishedCollection()
 | |
| 
 | |
| 	records4 := test.NewOutput(test.SdkEncoder)
 | |
| 	_ = checkpointSet.ForEach(records4.AddTo)
 | |
| 
 | |
| 	require.EqualValues(t, map[string]float64{
 | |
| 		"sum.a/C~D&G~H": 30,
 | |
| 		"sum.b/C~D&G~H": 30,
 | |
| 	}, records4.Map)
 | |
| }
 |