diff --git a/pkg/plug/grpc.go b/pkg/plug/grpc.go index 715d6d2..d8f15bb 100644 --- a/pkg/plug/grpc.go +++ b/pkg/plug/grpc.go @@ -60,6 +60,8 @@ func (s *server) TaskStart(ctx context.Context, creation *gRPC.PlugTaskCreation) // gRPC closes the context after the call ended. So the whole scrapping stopped without waiting // by using this method we assign a new context to each new request we get. // This can be used for example to close the context with the given id + ctx = trace.ContextWithSpanContext(context.Background(), trace.NewSpanContext(trace.SpanContextConfig{TraceID: span.SpanContext().TraceID()})) + taskCtx, cancel := context.WithCancel(ctx) s.ctx[id] = cancel span.AddEvent("Created new context for task", trace.WithAttributes(attribute.String("task_id", id)))