mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
718f80c5a1
* refactor: tracing package Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * child span Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
73 lines
2.1 KiB
Go
73 lines
2.1 KiB
Go
package tracing
|
|
|
|
import (
|
|
"context"
|
|
|
|
"go.opentelemetry.io/otel/trace"
|
|
)
|
|
|
|
// StartSpan creates a span from a context with `operationName` name
|
|
func StartChildSpan(
|
|
ctx context.Context,
|
|
tracerName string,
|
|
operationName string,
|
|
opts ...trace.SpanStartOption,
|
|
) (context.Context, trace.Span) {
|
|
span := CurrentSpan(ctx)
|
|
if !span.IsRecording() {
|
|
return ctx, span
|
|
}
|
|
return StartSpan(ctx, tracerName, operationName, opts...)
|
|
}
|
|
|
|
// Span executes function doFn inside new span with `operationName` name and hooking as child to a span found within given context if any.
|
|
func ChildSpan(
|
|
ctx context.Context,
|
|
tracerName string,
|
|
operationName string,
|
|
doFn func(context.Context, trace.Span),
|
|
opts ...trace.SpanStartOption,
|
|
) {
|
|
ctx, span := StartChildSpan(ctx, tracerName, operationName, opts...)
|
|
defer span.End()
|
|
doFn(ctx, span)
|
|
}
|
|
|
|
// Span executes function doFn inside new span with `operationName` name and hooking as child to a span found within given context if any.
|
|
func ChildSpan1[T1 any](
|
|
ctx context.Context,
|
|
tracerName string,
|
|
operationName string,
|
|
doFn func(context.Context, trace.Span) T1,
|
|
opts ...trace.SpanStartOption,
|
|
) T1 {
|
|
ctx, span := StartChildSpan(ctx, tracerName, operationName, opts...)
|
|
defer span.End()
|
|
return doFn(ctx, span)
|
|
}
|
|
|
|
// Span executes function doFn inside new span with `operationName` name and hooking as child to a span found within given context if any.
|
|
func ChildSpan2[T1 any, T2 any](
|
|
ctx context.Context,
|
|
tracerName string,
|
|
operationName string,
|
|
doFn func(context.Context, trace.Span) (T1, T2),
|
|
opts ...trace.SpanStartOption,
|
|
) (T1, T2) {
|
|
ctx, span := StartChildSpan(ctx, tracerName, operationName, opts...)
|
|
defer span.End()
|
|
return doFn(ctx, span)
|
|
}
|
|
|
|
// Span executes function doFn inside new span with `operationName` name and hooking as child to a span found within given context if any.
|
|
func ChildSpan3[T1 any, T2 any, T3 any](
|
|
ctx context.Context,
|
|
tracerName string,
|
|
operationName string,
|
|
doFn func(context.Context, trace.Span) (T1, T2, T3),
|
|
opts ...trace.SpanStartOption,
|
|
) (T1, T2, T3) {
|
|
ctx, span := StartChildSpan(ctx, tracerName, operationName, opts...)
|
|
defer span.End()
|
|
return doFn(ctx, span)
|
|
}
|