1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2026-06-03 18:35:08 +02:00
Files
opentelemetry-go/sdk/metric/aggregation/aggregation_test.go
T
Aaron Clawson 248413d654 Add the Exponential Histogram Aggregator. (#4245)
* Adds Exponential Histograms aggregator

* Added aggregation to the pipeline.

Adjust to new bucket

* Add no allocation if cap is available.

* Expand tests

* Fix lint

* Fix 64 bit math on 386 platform.

* Fix tests to work in go 1.19.
Fix spelling error

* fix codespell

* Add example

* Update sdk/metric/aggregation/aggregation.go

Co-authored-by: Robert Pająk <pellared@hotmail.com>

* Update sdk/metric/aggregation/aggregation.go

* Update sdk/metric/aggregation/aggregation.go

* Changelog

* Fix move

* Address feedback from the PR.

* Update expo histo to new aggregator format.

* Fix lint

* Remove Zero Threshold from config of expo histograms

* Remove DefaultExponentialHistogram()

* Refactor GetBin, and address PR Feedback

* Address PR feedback

* Fix comment in wrong location

* Fix misapplied PR feedback

* Fix codespell

---------

Co-authored-by: Robert Pająk <pellared@hotmail.com>
Co-authored-by: Chester Cheung <cheung.zhy.csu@gmail.com>
2023-08-04 11:57:44 -07:00

96 lines
2.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 aggregation
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestAggregationErr(t *testing.T) {
t.Run("DropOperation", func(t *testing.T) {
assert.NoError(t, Drop{}.Err())
})
t.Run("SumOperation", func(t *testing.T) {
assert.NoError(t, Sum{}.Err())
})
t.Run("LastValueOperation", func(t *testing.T) {
assert.NoError(t, LastValue{}.Err())
})
t.Run("ExplicitBucketHistogramOperation", func(t *testing.T) {
assert.NoError(t, ExplicitBucketHistogram{}.Err())
assert.NoError(t, ExplicitBucketHistogram{
Boundaries: []float64{0},
NoMinMax: true,
}.Err())
assert.NoError(t, ExplicitBucketHistogram{
Boundaries: []float64{0, 5, 10, 25, 50, 75, 100, 250, 500, 1000},
}.Err())
})
t.Run("NonmonotonicHistogramBoundaries", func(t *testing.T) {
assert.ErrorIs(t, ExplicitBucketHistogram{
Boundaries: []float64{2, 1},
}.Err(), errAgg)
assert.ErrorIs(t, ExplicitBucketHistogram{
Boundaries: []float64{0, 1, 2, 1, 3, 4},
}.Err(), errAgg)
})
t.Run("ExponentialHistogramOperation", func(t *testing.T) {
assert.NoError(t, Base2ExponentialHistogram{
MaxSize: 160,
MaxScale: 20,
}.Err())
assert.NoError(t, Base2ExponentialHistogram{
MaxSize: 1,
NoMinMax: true,
}.Err())
assert.NoError(t, Base2ExponentialHistogram{
MaxSize: 1024,
MaxScale: -3,
}.Err())
})
t.Run("InvalidExponentialHistogramOperation", func(t *testing.T) {
// MazSize must be greater than 0
assert.ErrorIs(t, Base2ExponentialHistogram{}.Err(), errAgg)
// MaxScale Must be <=20
assert.ErrorIs(t, Base2ExponentialHistogram{
MaxSize: 1,
MaxScale: 30,
}.Err(), errAgg)
})
}
func TestExplicitBucketHistogramDeepCopy(t *testing.T) {
const orig = 0.0
b := []float64{orig}
h := ExplicitBucketHistogram{Boundaries: b}
cpH := h.Copy().(ExplicitBucketHistogram)
b[0] = orig + 1
assert.Equal(t, orig, cpH.Boundaries[0], "changing the underlying slice data should not affect the copy")
}