Skip to content

Commit d6089f0

Browse files
pvitalGSVarsha
authored andcommitted
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 <paulo.vital@ibm.com>
1 parent fded599 commit d6089f0

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/instana/span.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ def __init__(self, span, source, service_name, **kwargs):
106106
self.t = span.context.trace_id
107107
self.p = span.parent_id
108108
self.s = span.context.span_id
109-
self.l = span.context.level
110109
self.ts = int(round(span.start_time * 1000))
111110
self.d = int(round(span.duration * 1000))
112111
self.f = source

0 commit comments

Comments
 (0)