mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-12 10:04:29 +02:00
fef504d469
* Add Min() interface - rename MaxSumCount to MinMaxSumCount Fixes https://github.com/open-telemetry/opentelemetry-go/issues/319 * update stdout exporter to collect and output the minimum value * update min and max atomically in Aggregator Update * changed all references to maxsumcount to minmaxsumcount * Address PR comments
134 lines
3.9 KiB
Go
134 lines
3.9 KiB
Go
// Copyright 2019, 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 ddsketch // import "go.opentelemetry.io/otel/sdk/metric/aggregator/ddsketch"
|
|
|
|
import (
|
|
"context"
|
|
"math"
|
|
"sync"
|
|
|
|
sdk "github.com/DataDog/sketches-go/ddsketch"
|
|
|
|
"go.opentelemetry.io/otel/api/core"
|
|
|
|
export "go.opentelemetry.io/otel/sdk/export/metric"
|
|
"go.opentelemetry.io/otel/sdk/export/metric/aggregator"
|
|
)
|
|
|
|
// Config is an alias for the underlying DDSketch config object.
|
|
type Config = sdk.Config
|
|
|
|
// Aggregator aggregates measure events.
|
|
type Aggregator struct {
|
|
lock sync.Mutex
|
|
cfg *Config
|
|
kind core.NumberKind
|
|
current *sdk.DDSketch
|
|
checkpoint *sdk.DDSketch
|
|
}
|
|
|
|
var _ export.Aggregator = &Aggregator{}
|
|
var _ aggregator.MinMaxSumCount = &Aggregator{}
|
|
var _ aggregator.Distribution = &Aggregator{}
|
|
|
|
// New returns a new DDSketch aggregator.
|
|
func New(cfg *Config, desc *export.Descriptor) *Aggregator {
|
|
return &Aggregator{
|
|
cfg: cfg,
|
|
kind: desc.NumberKind(),
|
|
current: sdk.NewDDSketch(cfg),
|
|
}
|
|
}
|
|
|
|
// NewDefaultConfig returns a new, default DDSketch config.
|
|
//
|
|
// TODO: Should the Config constructor set minValue to -Inf to
|
|
// when the descriptor has absolute=false? This requires providing
|
|
// values for alpha and maxNumBins, apparently.
|
|
func NewDefaultConfig() *Config {
|
|
return sdk.NewDefaultConfig()
|
|
}
|
|
|
|
// Sum returns the sum of values in the checkpoint.
|
|
func (c *Aggregator) Sum() (core.Number, error) {
|
|
return c.toNumber(c.checkpoint.Sum()), nil
|
|
}
|
|
|
|
// Count returns the number of values in the checkpoint.
|
|
func (c *Aggregator) Count() (int64, error) {
|
|
return c.checkpoint.Count(), nil
|
|
}
|
|
|
|
// Max returns the maximum value in the checkpoint.
|
|
func (c *Aggregator) Max() (core.Number, error) {
|
|
return c.Quantile(1)
|
|
}
|
|
|
|
// Min returns the minimum value in the checkpoint.
|
|
func (c *Aggregator) Min() (core.Number, error) {
|
|
return c.Quantile(0)
|
|
}
|
|
|
|
// Quantile returns the estimated quantile of data in the checkpoint.
|
|
// It is an error if `q` is less than 0 or greated than 1.
|
|
func (c *Aggregator) Quantile(q float64) (core.Number, error) {
|
|
if c.checkpoint.Count() == 0 {
|
|
return core.Number(0), aggregator.ErrEmptyDataSet
|
|
}
|
|
f := c.checkpoint.Quantile(q)
|
|
if math.IsNaN(f) {
|
|
return core.Number(0), aggregator.ErrInvalidQuantile
|
|
}
|
|
return c.toNumber(f), nil
|
|
}
|
|
|
|
func (c *Aggregator) toNumber(f float64) core.Number {
|
|
if c.kind == core.Float64NumberKind {
|
|
return core.NewFloat64Number(f)
|
|
}
|
|
return core.NewInt64Number(int64(f))
|
|
}
|
|
|
|
// Checkpoint saves the current state and resets the current state to
|
|
// the empty set, taking a lock to prevent concurrent Update() calls.
|
|
func (c *Aggregator) Checkpoint(ctx context.Context, _ *export.Descriptor) {
|
|
replace := sdk.NewDDSketch(c.cfg)
|
|
|
|
c.lock.Lock()
|
|
c.checkpoint = c.current
|
|
c.current = replace
|
|
c.lock.Unlock()
|
|
}
|
|
|
|
// Update adds the recorded measurement to the current data set.
|
|
// Update takes a lock to prevent concurrent Update() and Checkpoint()
|
|
// calls.
|
|
func (c *Aggregator) Update(_ context.Context, number core.Number, desc *export.Descriptor) error {
|
|
c.lock.Lock()
|
|
defer c.lock.Unlock()
|
|
c.current.Add(number.CoerceToFloat64(desc.NumberKind()))
|
|
return nil
|
|
}
|
|
|
|
// Merge combines two sketches into one.
|
|
func (c *Aggregator) Merge(oa export.Aggregator, d *export.Descriptor) error {
|
|
o, _ := oa.(*Aggregator)
|
|
if o == nil {
|
|
return aggregator.NewInconsistentMergeError(c, oa)
|
|
}
|
|
|
|
c.checkpoint.Merge(o.checkpoint)
|
|
return nil
|
|
}
|