File tree 2 files changed +34
-1
lines changed
2 files changed +34
-1
lines changed Original file line number Diff line number Diff line change 14
14
import warnings
15
15
16
16
from basictracer .recorder import SpanRecorder
17
+ from opentracing .logs import ERROR_KIND , STACK
17
18
18
19
from lightstep .http_converter import HttpConverter
19
20
from lightstep .thrift_converter import ThriftConverter
@@ -157,12 +158,23 @@ def record_span(self, span):
157
158
self .converter .append_attribute (span_record , key , util ._coerce_str (span .tags [key ]))
158
159
159
160
for log in span .logs :
160
- self .converter .append_log (span_record , log )
161
+ self .converter .append_log (span_record , self . _normalize_log ( log ) )
161
162
162
163
with self ._mutex :
163
164
if len (self ._span_records ) < self ._max_span_records :
164
165
self ._span_records .append (span_record )
165
166
167
+ def _normalize_log (self , log ):
168
+ if log .key_values is not None and len (log .key_values ) > 0 :
169
+
170
+ if ERROR_KIND in log .key_values :
171
+ log .key_values [ERROR_KIND ] = util ._format_exc_type (log .key_values [ERROR_KIND ])
172
+
173
+ if STACK in log .key_values :
174
+ log .key_values [STACK ] = util ._format_exc_tb (log .key_values [STACK ])
175
+
176
+ return log
177
+
166
178
def flush (self , connection = None ):
167
179
"""Immediately send unreported data to the server.
168
180
Original file line number Diff line number Diff line change 3
3
import random
4
4
import sys
5
5
import time
6
+ import traceback
7
+ import types
6
8
import math
7
9
from . import constants
8
10
@@ -102,3 +104,22 @@ def _coerce_to_unicode(val):
102
104
# Never let these errors bubble up
103
105
return '(encoding error)'
104
106
107
+
108
+ def _format_exc_tb (exc_tb ):
109
+ if type (exc_tb ) is types .TracebackType :
110
+ return '' .join (traceback .format_tb (exc_tb ))
111
+
112
+ return exc_tb
113
+
114
+
115
+ def _format_exc_type (exc_type ):
116
+ if exc_type is None :
117
+ return None
118
+
119
+ try :
120
+ return exc_type .__name__
121
+ except AttributeError :
122
+ pass
123
+
124
+ # Fallback to the original object.
125
+ return exc_type
You can’t perform that action at this time.
0 commit comments