mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-11-28 08:38:51 +02:00
937f4ff8b0
Introduce the new SDK, four aggregators, and an export interface.
77 lines
1.9 KiB
Go
77 lines
1.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 metric
|
|
|
|
import (
|
|
"context"
|
|
|
|
"go.opentelemetry.io/api/core"
|
|
)
|
|
|
|
type commonMetric struct {
|
|
instrument InstrumentImpl
|
|
}
|
|
|
|
type commonHandle struct {
|
|
handle HandleImpl
|
|
}
|
|
|
|
func (m commonMetric) acquireCommonHandle(labels LabelSet) commonHandle {
|
|
return newCommonHandle(m.instrument.AcquireHandle(labels))
|
|
}
|
|
|
|
func (m commonMetric) float64Measurement(value float64) Measurement {
|
|
return newMeasurement(m.instrument, core.NewFloat64Number(value))
|
|
}
|
|
|
|
func (m commonMetric) int64Measurement(value int64) Measurement {
|
|
return newMeasurement(m.instrument, core.NewInt64Number(value))
|
|
}
|
|
|
|
func (m commonMetric) recordOne(ctx context.Context, number core.Number, labels LabelSet) {
|
|
m.instrument.RecordOne(ctx, number, labels)
|
|
}
|
|
|
|
func (m commonMetric) Impl() InstrumentImpl {
|
|
return m.instrument
|
|
}
|
|
|
|
func (h commonHandle) recordOne(ctx context.Context, number core.Number) {
|
|
h.handle.RecordOne(ctx, number)
|
|
}
|
|
|
|
func (h commonHandle) Release() {
|
|
h.handle.Release()
|
|
}
|
|
|
|
func newCommonMetric(instrument InstrumentImpl) commonMetric {
|
|
return commonMetric{
|
|
instrument: instrument,
|
|
}
|
|
}
|
|
|
|
func newCommonHandle(handle HandleImpl) commonHandle {
|
|
return commonHandle{
|
|
handle: handle,
|
|
}
|
|
}
|
|
|
|
func newMeasurement(instrument InstrumentImpl, number core.Number) Measurement {
|
|
return Measurement{
|
|
instrument: instrument,
|
|
number: number,
|
|
}
|
|
}
|