From 9bf42c1c344809120d279ce4d14bbb1211a8f77f Mon Sep 17 00:00:00 2001 From: Paulo Vital Date: Mon, 9 Sep 2024 10:55:46 +0200 Subject: [PATCH] fix: Remove an unsupported Span data field. Removed the data field "l" (which stores the span level) from the Span data since the Instana Backend does not support it. Signed-off-by: Paulo Vital --- src/instana/span.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/instana/span.py b/src/instana/span.py index 5398fbd33..c9896453a 100644 --- a/src/instana/span.py +++ b/src/instana/span.py @@ -106,7 +106,6 @@ def __init__(self, span, source, service_name, **kwargs): self.t = span.context.trace_id self.p = span.parent_id self.s = span.context.span_id - self.l = span.context.level self.ts = int(round(span.start_time * 1000)) self.d = int(round(span.duration * 1000)) self.f = source