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 15ce1df commit 118af39Copy full SHA for 118af39
tests/test_logs.py
@@ -55,7 +55,9 @@ def envelopes_to_logs(envelopes: List[Envelope]) -> List[Log]:
55
"attributes": otel_attributes_to_dict(log_json["attributes"]),
56
"time_unix_nano": int(float(log_json["timestamp"]) * 1e9),
57
"trace_id": log_json["trace_id"],
58
+ "span_id": log_json["span_id"],
59
} # type: Log
60
+
61
res.append(log)
62
return res
63
0 commit comments