mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-02-03 13:11:53 +02:00
c197fe9305
* Metric SDK: Remove the distinction between filtered and unfiltered attributes.
41 lines
1.4 KiB
Go
41 lines
1.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 aggregate // import "go.opentelemetry.io/otel/sdk/metric/internal/aggregate"
|
|
|
|
import (
|
|
"time"
|
|
|
|
"go.opentelemetry.io/otel/attribute"
|
|
"go.opentelemetry.io/otel/sdk/metric/metricdata"
|
|
)
|
|
|
|
// now is used to return the current local time while allowing tests to
|
|
// override the default time.Now function.
|
|
var now = time.Now
|
|
|
|
// aggregator forms an aggregation from a collection of recorded measurements.
|
|
//
|
|
// Aggregators need to be comparable so they can be de-duplicated by the SDK
|
|
// when it creates them for multiple views.
|
|
type aggregator[N int64 | float64] interface {
|
|
// Aggregate records the measurement, scoped by attr, and aggregates it
|
|
// into an aggregation.
|
|
Aggregate(measurement N, attr attribute.Set)
|
|
|
|
// Aggregation returns an Aggregation, for all the aggregated
|
|
// measurements made and ends an aggregation cycle.
|
|
Aggregation() metricdata.Aggregation
|
|
}
|