2022-03-02 17:50:29 +02:00
|
|
|
// 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 asyncfloat64 // import "go.opentelemetry.io/otel/metric/instrument/asyncfloat64"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"go.opentelemetry.io/otel/attribute"
|
|
|
|
"go.opentelemetry.io/otel/metric/instrument"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Counter is an instrument that records increasing values.
|
2022-11-06 16:59:23 +02:00
|
|
|
//
|
|
|
|
// Warning: methods may be added to this interface in minor releases.
|
2022-03-02 17:50:29 +02:00
|
|
|
type Counter interface {
|
2022-10-27 17:47:27 +02:00
|
|
|
// Observe records the state of the instrument to be x. Implementations
|
|
|
|
// will assume x to be the cumulative sum of the count.
|
2022-03-02 17:50:29 +02:00
|
|
|
//
|
|
|
|
// It is only valid to call this within a callback. If called outside of the
|
|
|
|
// registered callback it should have no effect on the instrument, and an
|
|
|
|
// error will be reported via the error handler.
|
|
|
|
Observe(ctx context.Context, x float64, attrs ...attribute.KeyValue)
|
|
|
|
|
|
|
|
instrument.Asynchronous
|
|
|
|
}
|
|
|
|
|
2022-07-05 17:35:21 +02:00
|
|
|
// UpDownCounter is an instrument that records increasing or decreasing values.
|
2022-11-06 16:59:23 +02:00
|
|
|
//
|
|
|
|
// Warning: methods may be added to this interface in minor releases.
|
2022-03-02 17:50:29 +02:00
|
|
|
type UpDownCounter interface {
|
2022-10-27 17:47:27 +02:00
|
|
|
// Observe records the state of the instrument to be x. Implementations
|
|
|
|
// will assume x to be the cumulative sum of the count.
|
2022-03-02 17:50:29 +02:00
|
|
|
//
|
|
|
|
// It is only valid to call this within a callback. If called outside of the
|
|
|
|
// registered callback it should have no effect on the instrument, and an
|
|
|
|
// error will be reported via the error handler.
|
|
|
|
Observe(ctx context.Context, x float64, attrs ...attribute.KeyValue)
|
|
|
|
|
|
|
|
instrument.Asynchronous
|
|
|
|
}
|
|
|
|
|
|
|
|
// Gauge is an instrument that records independent readings.
|
2022-11-06 16:59:23 +02:00
|
|
|
//
|
|
|
|
// Warning: methods may be added to this interface in minor releases.
|
2022-03-02 17:50:29 +02:00
|
|
|
type Gauge interface {
|
2022-10-19 19:35:13 +02:00
|
|
|
// Observe records the state of the instrument to be x.
|
2022-03-02 17:50:29 +02:00
|
|
|
//
|
|
|
|
// It is only valid to call this within a callback. If called outside of the
|
|
|
|
// registered callback it should have no effect on the instrument, and an
|
|
|
|
// error will be reported via the error handler.
|
|
|
|
Observe(ctx context.Context, x float64, attrs ...attribute.KeyValue)
|
|
|
|
|
|
|
|
instrument.Asynchronous
|
|
|
|
}
|