mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
8609ced24b
* chore(deps): bump k8s.io/apiextensions-apiserver from 0.19.2 to 0.21.3 Bumps [k8s.io/apiextensions-apiserver](https://github.com/kubernetes/apiextensions-apiserver) from 0.19.2 to 0.21.3. - [Release notes](https://github.com/kubernetes/apiextensions-apiserver/releases) - [Commits](https://github.com/kubernetes/apiextensions-apiserver/compare/v0.19.2...v0.21.3) --- updated-dependencies: - dependency-name: k8s.io/apiextensions-apiserver dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * chore(deps): bump google.golang.org/api from 0.34.0 to 0.52.0 Bumps [google.golang.org/api](https://github.com/googleapis/google-api-go-client) from 0.34.0 to 0.52.0. - [Release notes](https://github.com/googleapis/google-api-go-client/releases) - [Changelog](https://github.com/googleapis/google-api-go-client/blob/master/CHANGES.md) - [Commits](https://github.com/googleapis/google-api-go-client/compare/v0.34.0...v0.52.0) --- updated-dependencies: - dependency-name: google.golang.org/api dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * start update dependencies * update mods and otlp * fix(build): update to go 1.16 * old version for k8s mods * update k8s versions * update orbos * with batcher * add batch span processor * try with older otel version 0.20 * remove syncer * otel rc2 * fix config Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Stefan Benz <stefan@caos.ch>
86 lines
2.0 KiB
Go
86 lines
2.0 KiB
Go
package tracing
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
sdk_trace "go.opentelemetry.io/otel/sdk/trace"
|
|
api_trace "go.opentelemetry.io/otel/trace"
|
|
)
|
|
|
|
type Tracer interface {
|
|
NewSpan(ctx context.Context, caller string) (context.Context, *Span)
|
|
NewClientSpan(ctx context.Context, caller string) (context.Context, *Span)
|
|
NewServerSpan(ctx context.Context, caller string) (context.Context, *Span)
|
|
NewClientInterceptorSpan(ctx context.Context, name string) (context.Context, *Span)
|
|
NewServerInterceptorSpan(ctx context.Context, name string) (context.Context, *Span)
|
|
NewSpanHTTP(r *http.Request, caller string) (*http.Request, *Span)
|
|
Sampler() sdk_trace.Sampler
|
|
}
|
|
|
|
type Config interface {
|
|
NewTracer() error
|
|
}
|
|
|
|
var T Tracer
|
|
|
|
func Sampler() sdk_trace.Sampler {
|
|
if T == nil {
|
|
return sdk_trace.NeverSample()
|
|
}
|
|
return T.Sampler()
|
|
}
|
|
|
|
func NewSpan(ctx context.Context) (context.Context, *Span) {
|
|
if T == nil {
|
|
return ctx, CreateSpan(nil)
|
|
}
|
|
return T.NewSpan(ctx, GetCaller())
|
|
}
|
|
|
|
func NewNamedSpan(ctx context.Context, name string) (context.Context, *Span) {
|
|
if T == nil {
|
|
return ctx, CreateSpan(nil)
|
|
}
|
|
return T.NewSpan(ctx, name)
|
|
}
|
|
|
|
func NewClientSpan(ctx context.Context) (context.Context, *Span) {
|
|
if T == nil {
|
|
return ctx, CreateSpan(nil)
|
|
}
|
|
return T.NewClientSpan(ctx, GetCaller())
|
|
}
|
|
|
|
func NewServerSpan(ctx context.Context) (context.Context, *Span) {
|
|
if T == nil {
|
|
return ctx, CreateSpan(nil)
|
|
}
|
|
return T.NewServerSpan(ctx, GetCaller())
|
|
}
|
|
|
|
func NewClientInterceptorSpan(ctx context.Context) (context.Context, *Span) {
|
|
if T == nil {
|
|
return ctx, CreateSpan(nil)
|
|
}
|
|
return T.NewClientInterceptorSpan(ctx, GetCaller())
|
|
}
|
|
|
|
func NewServerInterceptorSpan(ctx context.Context) (context.Context, *Span) {
|
|
if T == nil {
|
|
return ctx, CreateSpan(nil)
|
|
}
|
|
return T.NewServerInterceptorSpan(ctx, GetCaller())
|
|
}
|
|
|
|
func NewSpanHTTP(r *http.Request) (*http.Request, *Span) {
|
|
if T == nil {
|
|
return r, CreateSpan(nil)
|
|
}
|
|
return T.NewSpanHTTP(r, GetCaller())
|
|
}
|
|
|
|
func TraceIDFromCtx(ctx context.Context) string {
|
|
return api_trace.SpanFromContext(ctx).SpanContext().TraceID().String()
|
|
}
|