mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-12 10:04:29 +02:00
be8fb0b4e2
* initial metrics work * rename cumulative to counter * rename bidirectional to nonmonotonic * rename unidirectional to monotonic * rename nonnegative to signed this changes the default semantics a bit - before the change measure could record negative values by default, now it can't. The specification draft currently specifies both NonNegative and Signed, but I think it's a mistake. * rename instrument to descriptor * license * rework measurement values * make measurement value a tagged union * simplify to one kind of metrics * add observers * change some interfaces to match the spec * keep integral measurement separate from floating ones * remove duplicated measurement type * add checking for options * reorder some fields and functions * rename a function to avoid confusion between the Handle type and the Measure type * drop disabled field from descriptor * add back typed API for metrics * make metric options type safe * merge alternatives into a single bool * make value kind name less stuttery * fix observation callback prototype * drop context parameter from NewHandle * drop useless parameter names * make descriptor an opaque struct * use a store helper * handle comment fixes * reword Alternate comment * drop the "any value" metrics * make measurement value simpler * document value stuff * add tests for values * docs * do not panic if there is no span ID in the event
130 lines
3.9 KiB
Go
130 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 metric
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
// Float64Counter is a metric that accumulates float64 values.
|
|
type Float64Counter struct {
|
|
CommonMetric
|
|
}
|
|
|
|
// Int64Counter is a metric that accumulates int64 values.
|
|
type Int64Counter struct {
|
|
CommonMetric
|
|
}
|
|
|
|
// Float64CounterHandle is a handle for Float64Counter.
|
|
type Float64CounterHandle struct {
|
|
Handle
|
|
}
|
|
|
|
// Int64CounterHandle is a handle for Int64Counter.
|
|
type Int64CounterHandle struct {
|
|
Handle
|
|
}
|
|
|
|
// CounterOptionApplier is an interface for applying metric options
|
|
// that are valid only for counter metrics.
|
|
type CounterOptionApplier interface {
|
|
// ApplyCounterOption is used to make some counter-specific
|
|
// changes in the Descriptor.
|
|
ApplyCounterOption(*Descriptor)
|
|
}
|
|
|
|
type counterOptionWrapper struct {
|
|
F Option
|
|
}
|
|
|
|
var _ CounterOptionApplier = counterOptionWrapper{}
|
|
|
|
func (o counterOptionWrapper) ApplyCounterOption(d *Descriptor) {
|
|
o.F(d)
|
|
}
|
|
|
|
func newCounter(name string, valueKind ValueKind, mos ...CounterOptionApplier) CommonMetric {
|
|
m := registerCommonMetric(name, CounterKind, valueKind)
|
|
for _, opt := range mos {
|
|
opt.ApplyCounterOption(m.Descriptor)
|
|
}
|
|
return m
|
|
}
|
|
|
|
// NewFloat64Counter creates a new counter for float64.
|
|
func NewFloat64Counter(name string, mos ...CounterOptionApplier) (c Float64Counter) {
|
|
c.CommonMetric = newCounter(name, Float64ValueKind, mos...)
|
|
return
|
|
}
|
|
|
|
// NewInt64Counter creates a new counter for int64.
|
|
func NewInt64Counter(name string, mos ...CounterOptionApplier) (c Int64Counter) {
|
|
c.CommonMetric = newCounter(name, Int64ValueKind, mos...)
|
|
return
|
|
}
|
|
|
|
// GetHandle creates a handle for this counter. The labels should
|
|
// contain the keys and values specified in the counter with the
|
|
// WithKeys option.
|
|
func (c *Float64Counter) GetHandle(labels LabelSet) (h Float64CounterHandle) {
|
|
h.Handle = c.getHandle(labels)
|
|
return
|
|
}
|
|
|
|
// GetHandle creates a handle for this counter. The labels should
|
|
// contain the keys and values specified in the counter with the
|
|
// WithKeys option.
|
|
func (c *Int64Counter) GetHandle(labels LabelSet) (h Int64CounterHandle) {
|
|
h.Handle = c.getHandle(labels)
|
|
return
|
|
}
|
|
|
|
// Measurement creates a Measurement object to use with batch
|
|
// recording.
|
|
func (c *Float64Counter) Measurement(value float64) Measurement {
|
|
return c.float64Measurement(value)
|
|
}
|
|
|
|
// Measurement creates a Measurement object to use with batch
|
|
// recording.
|
|
func (c *Int64Counter) Measurement(value int64) Measurement {
|
|
return c.int64Measurement(value)
|
|
}
|
|
|
|
// Add adds the value to the counter's sum. The labels should contain
|
|
// the keys and values specified in the counter with the WithKeys
|
|
// option.
|
|
func (c *Float64Counter) Add(ctx context.Context, value float64, labels LabelSet) {
|
|
c.recordOne(ctx, NewFloat64MeasurementValue(value), labels)
|
|
}
|
|
|
|
// Add adds the value to the counter's sum. The labels should contain
|
|
// the keys and values specified in the counter with the WithKeys
|
|
// option.
|
|
func (c *Int64Counter) Add(ctx context.Context, value int64, labels LabelSet) {
|
|
c.recordOne(ctx, NewInt64MeasurementValue(value), labels)
|
|
}
|
|
|
|
// Add adds the value to the counter's sum.
|
|
func (h *Float64CounterHandle) Add(ctx context.Context, value float64) {
|
|
h.RecordOne(ctx, NewFloat64MeasurementValue(value))
|
|
}
|
|
|
|
// Add adds the value to the counter's sum.
|
|
func (h *Int64CounterHandle) Add(ctx context.Context, value int64) {
|
|
h.RecordOne(ctx, NewInt64MeasurementValue(value))
|
|
}
|