mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 13:18:01 +08:00
34 lines
990 B
Go
34 lines
990 B
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
package provider
|
|
|
|
import (
|
|
sdkTrace "go.opentelemetry.io/otel/sdk/trace"
|
|
)
|
|
|
|
type TracerProvider struct {
|
|
*sdkTrace.TracerProvider
|
|
}
|
|
|
|
// New returns a new and configured TracerProvider, which has no SpanProcessor.
|
|
//
|
|
// In default the returned TracerProvider is configured with:
|
|
// - a ParentBased(AlwaysSample) Sampler;
|
|
// - a unix nano timestamp and random umber based IDGenerator;
|
|
// - the resource.Default() Resource;
|
|
// - the default SpanLimits.
|
|
//
|
|
// The passed opts are used to override these default values and configure the
|
|
// returned TracerProvider appropriately.
|
|
func New() *TracerProvider {
|
|
return &TracerProvider{
|
|
TracerProvider: sdkTrace.NewTracerProvider(
|
|
sdkTrace.WithIDGenerator(NewIDGenerator()),
|
|
),
|
|
}
|
|
}
|