2020-07-22 21:34:44 +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 stdout
|
|
|
|
|
|
|
|
import (
|
2020-10-09 04:58:56 +02:00
|
|
|
"go.opentelemetry.io/otel"
|
2020-10-17 19:03:48 +02:00
|
|
|
"go.opentelemetry.io/otel/global"
|
2020-07-22 21:34:44 +02:00
|
|
|
"go.opentelemetry.io/otel/sdk/export/metric"
|
2020-10-09 04:58:56 +02:00
|
|
|
exporttrace "go.opentelemetry.io/otel/sdk/export/trace"
|
2020-07-22 21:34:44 +02:00
|
|
|
"go.opentelemetry.io/otel/sdk/metric/controller/push"
|
2020-08-13 22:12:32 +02:00
|
|
|
"go.opentelemetry.io/otel/sdk/metric/processor/basic"
|
2020-07-22 21:34:44 +02:00
|
|
|
"go.opentelemetry.io/otel/sdk/metric/selector/simple"
|
|
|
|
sdktrace "go.opentelemetry.io/otel/sdk/trace"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Exporter struct {
|
|
|
|
traceExporter
|
|
|
|
metricExporter
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2020-10-09 04:58:56 +02:00
|
|
|
_ metric.Exporter = &Exporter{}
|
|
|
|
_ exporttrace.SpanExporter = &Exporter{}
|
2020-07-22 21:34:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// NewExporter creates an Exporter with the passed options.
|
|
|
|
func NewExporter(options ...Option) (*Exporter, error) {
|
2020-09-11 23:14:25 +02:00
|
|
|
config, err := NewConfig(options...)
|
2020-07-22 21:34:44 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &Exporter{
|
2020-09-09 19:19:03 +02:00
|
|
|
traceExporter: traceExporter{config: config},
|
2020-07-22 21:34:44 +02:00
|
|
|
metricExporter: metricExporter{config},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewExportPipeline creates a complete export pipeline with the default
|
|
|
|
// selectors, processors, and trace registration. It is the responsibility
|
|
|
|
// of the caller to stop the returned push Controller.
|
2020-10-09 04:58:56 +02:00
|
|
|
func NewExportPipeline(exportOpts []Option, pushOpts []push.Option) (otel.TracerProvider, *push.Controller, error) {
|
2020-07-22 21:34:44 +02:00
|
|
|
exporter, err := NewExporter(exportOpts...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
2020-09-24 00:16:13 +02:00
|
|
|
tp := sdktrace.NewTracerProvider(sdktrace.WithBatcher(exporter))
|
2020-07-22 21:34:44 +02:00
|
|
|
pusher := push.New(
|
2020-08-13 22:12:32 +02:00
|
|
|
basic.New(
|
|
|
|
simple.NewWithExactDistribution(),
|
|
|
|
exporter,
|
|
|
|
),
|
2020-07-22 21:34:44 +02:00
|
|
|
exporter,
|
|
|
|
pushOpts...,
|
|
|
|
)
|
|
|
|
pusher.Start()
|
|
|
|
|
|
|
|
return tp, pusher, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// InstallNewPipeline creates a complete export pipelines with defaults and
|
|
|
|
// registers it globally. It is the responsibility of the caller to stop the
|
|
|
|
// returned push Controller.
|
|
|
|
//
|
|
|
|
// Typically this is called as:
|
|
|
|
//
|
|
|
|
// pipeline, err := stdout.InstallNewPipeline(stdout.Config{...})
|
|
|
|
// if err != nil {
|
|
|
|
// ...
|
|
|
|
// }
|
|
|
|
// defer pipeline.Stop()
|
|
|
|
// ... Done
|
|
|
|
func InstallNewPipeline(exportOpts []Option, pushOpts []push.Option) (*push.Controller, error) {
|
2020-08-31 19:02:04 +02:00
|
|
|
tracerProvider, controller, err := NewExportPipeline(exportOpts, pushOpts)
|
2020-07-22 21:34:44 +02:00
|
|
|
if err != nil {
|
|
|
|
return controller, err
|
|
|
|
}
|
2020-08-31 19:02:04 +02:00
|
|
|
global.SetTracerProvider(tracerProvider)
|
2020-09-24 00:16:13 +02:00
|
|
|
global.SetMeterProvider(controller.MeterProvider())
|
2020-07-22 21:34:44 +02:00
|
|
|
return controller, err
|
|
|
|
}
|