2019-11-15 23:01:20 +02:00
|
|
|
// 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 push // import "go.opentelemetry.io/otel/sdk/metric/controller/push"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"go.opentelemetry.io/otel/api/metric"
|
|
|
|
export "go.opentelemetry.io/otel/sdk/export/metric"
|
|
|
|
sdk "go.opentelemetry.io/otel/sdk/metric"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Controller organizes a periodic push of metric data.
|
|
|
|
type Controller struct {
|
|
|
|
lock sync.Mutex
|
2019-12-23 19:47:51 +02:00
|
|
|
collectLock sync.Mutex
|
2019-11-15 23:01:20 +02:00
|
|
|
sdk *sdk.SDK
|
|
|
|
errorHandler sdk.ErrorHandler
|
|
|
|
batcher export.Batcher
|
|
|
|
exporter export.Exporter
|
|
|
|
wg sync.WaitGroup
|
|
|
|
ch chan struct{}
|
|
|
|
period time.Duration
|
|
|
|
ticker Ticker
|
|
|
|
clock Clock
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ metric.Provider = &Controller{}
|
|
|
|
|
|
|
|
// Several types below are created to match "github.com/benbjohnson/clock"
|
|
|
|
// so that it remains a test-only dependency.
|
|
|
|
|
|
|
|
type Clock interface {
|
|
|
|
Now() time.Time
|
|
|
|
Ticker(time.Duration) Ticker
|
|
|
|
}
|
|
|
|
|
|
|
|
type Ticker interface {
|
|
|
|
Stop()
|
|
|
|
C() <-chan time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
type realClock struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
type realTicker struct {
|
|
|
|
ticker *time.Ticker
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ Clock = realClock{}
|
|
|
|
var _ Ticker = realTicker{}
|
|
|
|
|
|
|
|
// New constructs a Controller, an implementation of metric.Provider,
|
|
|
|
// using the provided batcher, exporter, and collection period to
|
|
|
|
// configure an SDK with periodic collection. The batcher itself is
|
|
|
|
// configured with the aggregation selector policy.
|
|
|
|
//
|
|
|
|
// If the Exporter implements the export.LabelEncoder interface, the
|
|
|
|
// exporter will be used as the label encoder for the SDK itself,
|
|
|
|
// otherwise the SDK will be configured with the default label
|
|
|
|
// encoder.
|
|
|
|
func New(batcher export.Batcher, exporter export.Exporter, period time.Duration) *Controller {
|
|
|
|
lencoder, _ := exporter.(export.LabelEncoder)
|
|
|
|
|
|
|
|
if lencoder == nil {
|
2019-11-22 06:46:05 +02:00
|
|
|
lencoder = sdk.NewDefaultLabelEncoder()
|
2019-11-15 23:01:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return &Controller{
|
|
|
|
sdk: sdk.New(batcher, lencoder),
|
|
|
|
errorHandler: sdk.DefaultErrorHandler,
|
|
|
|
batcher: batcher,
|
|
|
|
exporter: exporter,
|
|
|
|
ch: make(chan struct{}),
|
|
|
|
period: period,
|
|
|
|
clock: realClock{},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetClock supports setting a mock clock for testing. This must be
|
|
|
|
// called before Start().
|
|
|
|
func (c *Controller) SetClock(clock Clock) {
|
|
|
|
c.lock.Lock()
|
|
|
|
defer c.lock.Unlock()
|
|
|
|
c.clock = clock
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Controller) SetErrorHandler(errorHandler sdk.ErrorHandler) {
|
|
|
|
c.lock.Lock()
|
|
|
|
defer c.lock.Unlock()
|
|
|
|
c.errorHandler = errorHandler
|
|
|
|
c.sdk.SetErrorHandler(errorHandler)
|
|
|
|
}
|
|
|
|
|
2019-11-26 19:54:05 +02:00
|
|
|
// Meter returns a named Meter, satisifying the metric.Provider
|
2019-11-15 23:01:20 +02:00
|
|
|
// interface.
|
2019-12-24 02:38:35 +02:00
|
|
|
func (c *Controller) Meter(_ string) metric.Meter {
|
2019-11-15 23:01:20 +02:00
|
|
|
return c.sdk
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start begins a ticker that periodically collects and exports
|
|
|
|
// metrics with the configured interval.
|
|
|
|
func (c *Controller) Start() {
|
|
|
|
c.lock.Lock()
|
|
|
|
defer c.lock.Unlock()
|
|
|
|
|
|
|
|
if c.ticker != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.ticker = c.clock.Ticker(c.period)
|
|
|
|
c.wg.Add(1)
|
|
|
|
go c.run(c.ch)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stop waits for the background goroutine to return and then collects
|
|
|
|
// and exports metrics one last time before returning.
|
|
|
|
func (c *Controller) Stop() {
|
|
|
|
c.lock.Lock()
|
|
|
|
defer c.lock.Unlock()
|
|
|
|
|
|
|
|
if c.ch == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
close(c.ch)
|
|
|
|
c.ch = nil
|
|
|
|
c.wg.Wait()
|
|
|
|
c.ticker.Stop()
|
|
|
|
|
|
|
|
c.tick()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Controller) run(ch chan struct{}) {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-ch:
|
|
|
|
c.wg.Done()
|
|
|
|
return
|
|
|
|
case <-c.ticker.C():
|
|
|
|
c.tick()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Controller) tick() {
|
|
|
|
// TODO: either remove the context argument from Export() or
|
|
|
|
// configure a timeout here?
|
|
|
|
ctx := context.Background()
|
2019-12-23 19:47:51 +02:00
|
|
|
c.collect(ctx)
|
|
|
|
checkpointSet := syncCheckpointSet{
|
|
|
|
mtx: &c.collectLock,
|
|
|
|
delegate: c.batcher.CheckpointSet(),
|
|
|
|
}
|
|
|
|
err := c.exporter.Export(ctx, checkpointSet)
|
2019-11-15 23:01:20 +02:00
|
|
|
c.batcher.FinishedCollection()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
c.errorHandler(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-23 19:47:51 +02:00
|
|
|
func (c *Controller) collect(ctx context.Context) {
|
|
|
|
c.collectLock.Lock()
|
|
|
|
defer c.collectLock.Unlock()
|
|
|
|
|
|
|
|
c.sdk.Collect(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// syncCheckpointSet is a wrapper for a CheckpointSet to synchronize
|
|
|
|
// SDK's collection and reads of a CheckpointSet by an exporter.
|
|
|
|
type syncCheckpointSet struct {
|
|
|
|
mtx *sync.Mutex
|
|
|
|
delegate export.CheckpointSet
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ export.CheckpointSet = (*syncCheckpointSet)(nil)
|
|
|
|
|
2020-03-17 01:28:33 +02:00
|
|
|
func (c syncCheckpointSet) ForEach(fn func(export.Record) error) error {
|
2019-12-23 19:47:51 +02:00
|
|
|
c.mtx.Lock()
|
|
|
|
defer c.mtx.Unlock()
|
2020-03-17 01:28:33 +02:00
|
|
|
return c.delegate.ForEach(fn)
|
2019-12-23 19:47:51 +02:00
|
|
|
}
|
|
|
|
|
2019-11-15 23:01:20 +02:00
|
|
|
func (realClock) Now() time.Time {
|
|
|
|
return time.Now()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (realClock) Ticker(period time.Duration) Ticker {
|
|
|
|
return realTicker{time.NewTicker(period)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t realTicker) Stop() {
|
|
|
|
t.ticker.Stop()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t realTicker) C() <-chan time.Time {
|
|
|
|
return t.ticker.C
|
|
|
|
}
|