mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-12 10:04:29 +02:00
d8682c1999
* Create MeterImpl interface * Checkpoint w/ sdk.go building * Checkpoint working on global * api/global builds (test fails) * Test fix * All tests pass * Comments * Add two tests * Comments and uncomment tests * Precommit part 1 * Still working on tests * Lint * Add a test and a TODO * Cleanup * Lint * Interface()->Implementation() * Apply some feedback * From feedback * (A)Synchronous -> (A)Sync * Add a missing comment * Apply suggestions from code review Co-Authored-By: Krzesimir Nowak <qdlacz@gmail.com> * Rename a variable Co-authored-by: Krzesimir Nowak <qdlacz@gmail.com>
80 lines
2.0 KiB
Go
80 lines
2.0 KiB
Go
package metric
|
|
|
|
import (
|
|
"context"
|
|
|
|
"go.opentelemetry.io/otel/api/core"
|
|
)
|
|
|
|
type NoopProvider struct{}
|
|
type NoopMeter struct{}
|
|
|
|
type noopLabelSet struct{}
|
|
type noopInstrument struct{}
|
|
type noopBoundInstrument struct{}
|
|
type NoopSync struct{ noopInstrument }
|
|
type NoopAsync struct{ noopInstrument }
|
|
|
|
var _ Provider = NoopProvider{}
|
|
var _ Meter = NoopMeter{}
|
|
var _ SyncImpl = NoopSync{}
|
|
var _ BoundSyncImpl = noopBoundInstrument{}
|
|
var _ LabelSet = noopLabelSet{}
|
|
var _ AsyncImpl = NoopAsync{}
|
|
|
|
func (NoopProvider) Meter(name string) Meter {
|
|
return NoopMeter{}
|
|
}
|
|
|
|
func (noopInstrument) Implementation() interface{} {
|
|
return nil
|
|
}
|
|
|
|
func (noopInstrument) Descriptor() Descriptor {
|
|
return Descriptor{}
|
|
}
|
|
|
|
func (noopBoundInstrument) RecordOne(context.Context, core.Number) {
|
|
}
|
|
|
|
func (noopBoundInstrument) Unbind() {
|
|
}
|
|
|
|
func (NoopSync) Bind(LabelSet) BoundSyncImpl {
|
|
return noopBoundInstrument{}
|
|
}
|
|
|
|
func (NoopSync) RecordOne(context.Context, core.Number, LabelSet) {
|
|
}
|
|
|
|
func (NoopMeter) Labels(...core.KeyValue) LabelSet {
|
|
return noopLabelSet{}
|
|
}
|
|
|
|
func (NoopMeter) RecordBatch(context.Context, LabelSet, ...Measurement) {
|
|
}
|
|
|
|
func (NoopMeter) NewInt64Counter(string, ...Option) (Int64Counter, error) {
|
|
return Int64Counter{syncInstrument{NoopSync{}}}, nil
|
|
}
|
|
|
|
func (NoopMeter) NewFloat64Counter(string, ...Option) (Float64Counter, error) {
|
|
return Float64Counter{syncInstrument{NoopSync{}}}, nil
|
|
}
|
|
|
|
func (NoopMeter) NewInt64Measure(string, ...Option) (Int64Measure, error) {
|
|
return Int64Measure{syncInstrument{NoopSync{}}}, nil
|
|
}
|
|
|
|
func (NoopMeter) NewFloat64Measure(string, ...Option) (Float64Measure, error) {
|
|
return Float64Measure{syncInstrument{NoopSync{}}}, nil
|
|
}
|
|
|
|
func (NoopMeter) RegisterInt64Observer(string, Int64ObserverCallback, ...Option) (Int64Observer, error) {
|
|
return Int64Observer{asyncInstrument{NoopAsync{}}}, nil
|
|
}
|
|
|
|
func (NoopMeter) RegisterFloat64Observer(string, Float64ObserverCallback, ...Option) (Float64Observer, error) {
|
|
return Float64Observer{asyncInstrument{NoopAsync{}}}, nil
|
|
}
|