mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-04 09:43:23 +02:00
65 lines
1.7 KiB
Go
65 lines
1.7 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 stats
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/open-telemetry/opentelemetry-go/api/core"
|
|
"github.com/open-telemetry/opentelemetry-go/api/scope"
|
|
"github.com/open-telemetry/opentelemetry-go/exporter/observer"
|
|
)
|
|
|
|
type Interface interface {
|
|
Record(ctx context.Context, m ...core.Measurement)
|
|
RecordSingle(ctx context.Context, m core.Measurement)
|
|
}
|
|
|
|
type Recorder struct {
|
|
core.ScopeID
|
|
}
|
|
|
|
var _ Interface = (*Recorder)(nil)
|
|
|
|
func With(scope scope.Scope) Recorder {
|
|
return Recorder{scope.ScopeID()}
|
|
}
|
|
|
|
func Record(ctx context.Context, m ...core.Measurement) {
|
|
With(scope.Active(ctx)).Record(ctx, m...)
|
|
}
|
|
|
|
func RecordSingle(ctx context.Context, m core.Measurement) {
|
|
With(scope.Active(ctx)).RecordSingle(ctx, m)
|
|
}
|
|
|
|
func (r Recorder) Record(ctx context.Context, m ...core.Measurement) {
|
|
observer.Record(observer.Event{
|
|
Type: observer.RECORD_STATS,
|
|
Scope: r.ScopeID,
|
|
Context: ctx,
|
|
Stats: m,
|
|
})
|
|
}
|
|
|
|
func (r Recorder) RecordSingle(ctx context.Context, m core.Measurement) {
|
|
observer.Record(observer.Event{
|
|
Type: observer.RECORD_STATS,
|
|
Scope: r.ScopeID,
|
|
Context: ctx,
|
|
Stat: m,
|
|
})
|
|
}
|