Skip to content

Commit fd49ef4

Browse files
committed
telemetry: use client spans for trace root and github action
1 parent dc7ad55 commit fd49ef4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/telemetry/telemetry.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -148,13 +148,13 @@ func (pt *PipelineTimings) Validate() error {
148148

149149
func (pt *PipelineTimings) StartTracing(ctx context.Context) (context.Context, otrace.Span) {
150150
if pt == nil {
151-
return Tracer().Start(ctx, "Continuous integration pipeline", otrace.WithSpanKind(otrace.SpanKindServer))
151+
return Tracer().Start(ctx, "Continuous integration pipeline", otrace.WithSpanKind(otrace.SpanKindClient))
152152
}
153153

154-
rootCtx, rootSpan := Tracer().Start(ctx, "Continuous integration pipeline", otrace.WithTimestamp(pt.LatestCommit), otrace.WithSpanKind(otrace.SpanKindServer))
154+
rootCtx, rootSpan := Tracer().Start(ctx, "Continuous integration pipeline", otrace.WithTimestamp(pt.LatestCommit), otrace.WithSpanKind(otrace.SpanKindClient))
155155
rootSpan.AddEvent("Latest commit to repository", otrace.WithTimestamp(pt.LatestCommit))
156156
{
157-
ciCtx, ciSpan := Tracer().Start(rootCtx, "Github Action: docker-build-push", otrace.WithTimestamp(pt.Start), otrace.WithAttributes())
157+
ciCtx, ciSpan := Tracer().Start(rootCtx, "Github Action: docker-build-push", otrace.WithTimestamp(pt.Start), otrace.WithSpanKind(otrace.SpanKindClient))
158158
{
159159
_, buildSpan := Tracer().Start(ciCtx, "Docker: Build and push", otrace.WithTimestamp(pt.BuildStart))
160160
buildSpan.End(otrace.WithTimestamp(pt.AttestStart))

0 commit comments

Comments
 (0)