mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-07 15:10:01 +08:00
134 lines
3.7 KiB
Go
134 lines
3.7 KiB
Go
package trace
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
"sync"
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
"go.opentelemetry.io/otel"
|
|
"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc"
|
|
"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp"
|
|
"go.opentelemetry.io/otel/exporters/stdout/stdouttrace"
|
|
"go.opentelemetry.io/otel/exporters/zipkin"
|
|
"go.opentelemetry.io/otel/sdk/resource"
|
|
sdktrace "go.opentelemetry.io/otel/sdk/trace"
|
|
semconv "go.opentelemetry.io/otel/semconv/v1.4.0"
|
|
)
|
|
|
|
const (
|
|
kindZipkin = "zipkin"
|
|
kindOtlpGrpc = "otlpgrpc"
|
|
kindOtlpHttp = "otlphttp"
|
|
kindFile = "file"
|
|
)
|
|
|
|
var (
|
|
once sync.Once
|
|
tp *sdktrace.TracerProvider
|
|
shutdownOnceFn = sync.OnceFunc(func() {
|
|
if tp != nil {
|
|
_ = tp.Shutdown(context.Background())
|
|
}
|
|
})
|
|
)
|
|
|
|
// StartAgent starts an opentelemetry agent.
|
|
// It uses sync.Once to ensure the agent is initialized only once,
|
|
// similar to prometheus.StartAgent and logx.SetUp.
|
|
// This prevents multiple ServiceConf.SetUp() calls from reinitializing
|
|
// the global tracer provider when running multiple servers (e.g., REST + RPC)
|
|
// in the same process.
|
|
func StartAgent(c Config) {
|
|
if c.Disabled {
|
|
return
|
|
}
|
|
|
|
once.Do(func() {
|
|
if err := startAgent(c); err != nil {
|
|
logx.Error(err)
|
|
}
|
|
})
|
|
}
|
|
|
|
// StopAgent shuts down the span processors in the order they were registered.
|
|
func StopAgent() {
|
|
shutdownOnceFn()
|
|
}
|
|
|
|
func createExporter(c Config) (sdktrace.SpanExporter, error) {
|
|
switch c.Batcher {
|
|
case kindZipkin:
|
|
return zipkin.New(c.Endpoint)
|
|
case kindOtlpGrpc:
|
|
// Always treat trace exporter as optional component, so we use nonblock here,
|
|
// otherwise this would slow down app start up even set a dial timeout here when
|
|
// endpoint can not reach.
|
|
// If the connection not dial success, the global otel ErrorHandler will catch error
|
|
// when reporting data like other exporters.
|
|
opts := []otlptracegrpc.Option{
|
|
otlptracegrpc.WithInsecure(),
|
|
otlptracegrpc.WithEndpoint(c.Endpoint),
|
|
}
|
|
if len(c.OtlpHeaders) > 0 {
|
|
opts = append(opts, otlptracegrpc.WithHeaders(c.OtlpHeaders))
|
|
}
|
|
return otlptracegrpc.New(context.Background(), opts...)
|
|
case kindOtlpHttp:
|
|
// Not support flexible configuration now.
|
|
opts := []otlptracehttp.Option{
|
|
otlptracehttp.WithEndpoint(c.Endpoint),
|
|
}
|
|
|
|
if !c.OtlpHttpSecure {
|
|
opts = append(opts, otlptracehttp.WithInsecure())
|
|
}
|
|
if len(c.OtlpHeaders) > 0 {
|
|
opts = append(opts, otlptracehttp.WithHeaders(c.OtlpHeaders))
|
|
}
|
|
if len(c.OtlpHttpPath) > 0 {
|
|
opts = append(opts, otlptracehttp.WithURLPath(c.OtlpHttpPath))
|
|
}
|
|
return otlptracehttp.New(context.Background(), opts...)
|
|
case kindFile:
|
|
f, err := os.OpenFile(c.Endpoint, os.O_WRONLY|os.O_CREATE|os.O_APPEND, 0666)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("file exporter endpoint error: %s", err.Error())
|
|
}
|
|
return stdouttrace.New(stdouttrace.WithWriter(f))
|
|
default:
|
|
return nil, fmt.Errorf("unknown exporter: %s", c.Batcher)
|
|
}
|
|
}
|
|
|
|
func startAgent(c Config) error {
|
|
AddResources(semconv.ServiceNameKey.String(c.Name))
|
|
|
|
opts := []sdktrace.TracerProviderOption{
|
|
// Set the sampling rate based on the parent span to 100%
|
|
sdktrace.WithSampler(sdktrace.ParentBased(sdktrace.TraceIDRatioBased(c.Sampler))),
|
|
// Record information about this application in a Resource.
|
|
sdktrace.WithResource(resource.NewSchemaless(attrResources...)),
|
|
}
|
|
|
|
if len(c.Endpoint) > 0 {
|
|
exp, err := createExporter(c)
|
|
if err != nil {
|
|
logx.Error(err)
|
|
return err
|
|
}
|
|
|
|
// Always be sure to batch in production.
|
|
opts = append(opts, sdktrace.WithBatcher(exp))
|
|
}
|
|
|
|
tp = sdktrace.NewTracerProvider(opts...)
|
|
otel.SetTracerProvider(tp)
|
|
otel.SetErrorHandler(otel.ErrorHandlerFunc(func(err error) {
|
|
logx.Errorf("[otel] error: %v", err)
|
|
}))
|
|
|
|
return nil
|
|
}
|