1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2024-12-14 10:13:10 +02:00
opentelemetry-go/sdk/metric/processor/reducer/reducer.go
Joshua MacDonald 478dc4fe40
Metrics: Move the non-API types into sdkapi (#2271)
* move Descriptor to sdkapi, add test

* rename Descriptor to sdkapi

* precommit

* Move the rest of the sdkapi

* use alias for Observation and Measurement

* Changelog

* pr num

* comment Measurement and Observation

* swap comments

* move->moved
2021-10-14 09:06:22 -07:00

67 lines
2.0 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 reducer // import "go.opentelemetry.io/otel/sdk/metric/processor/reducer"
import (
"go.opentelemetry.io/otel/attribute"
"go.opentelemetry.io/otel/metric/sdkapi"
export "go.opentelemetry.io/otel/sdk/export/metric"
)
type (
// Processor implements "dimensionality reduction" by
// filtering keys from export label sets.
Processor struct {
export.Checkpointer
filterSelector LabelFilterSelector
}
// LabelFilterSelector is the interface used to configure a
// specific Filter to an instrument.
LabelFilterSelector interface {
LabelFilterFor(descriptor *sdkapi.Descriptor) attribute.Filter
}
)
var _ export.Processor = &Processor{}
var _ export.Checkpointer = &Processor{}
// New returns a dimensionality-reducing Processor that passes data to
// the next stage in an export pipeline.
func New(filterSelector LabelFilterSelector, ckpter export.Checkpointer) *Processor {
return &Processor{
Checkpointer: ckpter,
filterSelector: filterSelector,
}
}
// Process implements export.Processor.
func (p *Processor) Process(accum export.Accumulation) error {
// Note: the removed labels are returned and ignored here.
// Conceivably these inputs could be useful to a sampler.
reduced, _ := accum.Labels().Filter(
p.filterSelector.LabelFilterFor(
accum.Descriptor(),
),
)
return p.Checkpointer.Process(
export.NewAccumulation(
accum.Descriptor(),
&reduced,
accum.Aggregator(),
),
)
}