Skip to content

Commit

Permalink
fix: Remove an unsupported Span data field.
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
pvital authored and GSVarsha committed Sep 9, 2024
1 parent fded599 commit d6089f0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/instana/span.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d6089f0

Please sign in to comment.