Skip to content

Commit b8a47e2

Browse files
Properly format OT error logs. (#72)
1 parent 0d063e1 commit b8a47e2

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

lightstep/recorder.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
import warnings
1515

1616
from basictracer.recorder import SpanRecorder
17+
from opentracing.logs import ERROR_KIND, STACK
1718

1819
from lightstep.http_converter import HttpConverter
1920
from lightstep.thrift_converter import ThriftConverter
@@ -157,12 +158,23 @@ def record_span(self, span):
157158
self.converter.append_attribute(span_record, key, util._coerce_str(span.tags[key]))
158159

159160
for log in span.logs:
160-
self.converter.append_log(span_record, log)
161+
self.converter.append_log(span_record, self._normalize_log(log))
161162

162163
with self._mutex:
163164
if len(self._span_records) < self._max_span_records:
164165
self._span_records.append(span_record)
165166

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+
166178
def flush(self, connection=None):
167179
"""Immediately send unreported data to the server.
168180

lightstep/util.py

+21
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
import random
44
import sys
55
import time
6+
import traceback
7+
import types
68
import math
79
from . import constants
810

@@ -102,3 +104,22 @@ def _coerce_to_unicode(val):
102104
# Never let these errors bubble up
103105
return '(encoding error)'
104106

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

0 commit comments

Comments
 (0)