2020-03-24 07:41:10 +02:00
|
|
|
// Copyright The OpenTelemetry Authors
|
2019-08-02 22:52:55 +02:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2020-11-04 19:10:58 +02:00
|
|
|
package trace // import "go.opentelemetry.io/otel/sdk/trace"
|
2019-08-02 22:52:55 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2020-02-04 18:55:03 +02:00
|
|
|
"go.opentelemetry.io/otel/internal/trace/parent"
|
2020-11-07 00:13:31 +02:00
|
|
|
"go.opentelemetry.io/otel/trace"
|
|
|
|
|
2020-06-09 20:47:54 +02:00
|
|
|
"go.opentelemetry.io/otel/sdk/instrumentation"
|
2019-08-02 22:52:55 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type tracer struct {
|
2020-09-24 00:16:13 +02:00
|
|
|
provider *TracerProvider
|
2020-06-09 20:47:54 +02:00
|
|
|
instrumentationLibrary instrumentation.Library
|
2019-08-02 22:52:55 +02:00
|
|
|
}
|
|
|
|
|
2020-11-07 00:13:31 +02:00
|
|
|
var _ trace.Tracer = &tracer{}
|
2019-08-02 22:52:55 +02:00
|
|
|
|
2020-09-03 16:34:36 +02:00
|
|
|
// Start starts a Span and returns it along with a context containing it.
|
|
|
|
//
|
|
|
|
// The Span is created with the provided name and as a child of any existing
|
|
|
|
// span context found in the passed context. The created Span will be
|
|
|
|
// configured appropriately by any SpanOption passed. Any Timestamp option
|
|
|
|
// passed will be used as the start time of the Span's life-cycle.
|
2020-11-07 00:13:31 +02:00
|
|
|
func (tr *tracer) Start(ctx context.Context, name string, options ...trace.SpanOption) (context.Context, trace.Span) {
|
|
|
|
config := trace.NewSpanConfig(options...)
|
2019-08-02 22:52:55 +02:00
|
|
|
|
2020-09-03 16:34:36 +02:00
|
|
|
parentSpanContext, remoteParent, links := parent.GetSpanContextAndLinks(ctx, config.NewRoot)
|
2020-02-04 18:55:03 +02:00
|
|
|
|
2020-11-07 00:13:31 +02:00
|
|
|
if p := trace.SpanFromContext(ctx); p != nil {
|
2020-02-04 18:55:03 +02:00
|
|
|
if sdkSpan, ok := p.(*span); ok {
|
|
|
|
sdkSpan.addChild()
|
2019-10-14 22:20:03 +02:00
|
|
|
}
|
2019-08-02 22:52:55 +02:00
|
|
|
}
|
|
|
|
|
2020-12-10 03:30:32 +02:00
|
|
|
span := startSpanInternal(ctx, tr, name, parentSpanContext, remoteParent, config)
|
2020-02-04 18:55:03 +02:00
|
|
|
for _, l := range links {
|
|
|
|
span.addLink(l)
|
|
|
|
}
|
2020-09-03 16:34:36 +02:00
|
|
|
for _, l := range config.Links {
|
2019-11-26 23:03:07 +02:00
|
|
|
span.addLink(l)
|
2019-11-04 15:03:40 +02:00
|
|
|
}
|
2020-09-03 16:34:36 +02:00
|
|
|
span.SetAttributes(config.Attributes...)
|
2019-11-04 15:03:40 +02:00
|
|
|
|
2019-08-02 22:52:55 +02:00
|
|
|
span.tracer = tr
|
|
|
|
|
2019-10-11 03:07:35 +02:00
|
|
|
if span.IsRecording() {
|
2020-09-24 20:43:23 +02:00
|
|
|
sps, _ := tr.provider.spanProcessors.Load().(spanProcessorStates)
|
|
|
|
for _, sp := range sps {
|
2020-12-11 07:15:44 +02:00
|
|
|
sp.sp.OnStart(ctx, span)
|
2019-09-16 22:58:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-14 14:54:48 +02:00
|
|
|
ctx, end := startExecutionTracerTask(ctx, name)
|
2019-08-02 22:52:55 +02:00
|
|
|
span.executionTracerTaskEnd = end
|
2020-11-07 00:13:31 +02:00
|
|
|
return trace.ContextWithSpan(ctx, span), span
|
2019-08-02 22:52:55 +02:00
|
|
|
}
|