We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b09f5f1 commit c2ef8c8Copy full SHA for c2ef8c8
instana/recorder.py
@@ -93,6 +93,8 @@ def build_registered_span(self, span):
93
ts=int(round(span.start_time * 1000)),
94
d=int(round(span.duration * 1000)),
95
f=self.sensor.agent.from_,
96
+ ec=self.get_tag(span, "ec"),
97
+ error=self.get_tag(span, "error"),
98
data=data)
99
100
def build_sdk_span(self, span):
instana/span.py
@@ -8,6 +8,7 @@ class InstanaSpan(object):
8
n = None
9
f = None
10
ec = 0
11
+ error = False
12
data = None
13
14
def __init__(self, **kwds):
0 commit comments