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 5da8472 commit cc8d409Copy full SHA for cc8d409
Sources/Exporters/DatadogExporter/Spans/SpanEncoder.swift
@@ -70,8 +70,8 @@ internal struct DDSpan: Encodable {
70
self.spanID = spanData.spanId
71
self.parentID = spanData.parentSpanId
72
73
- if let testType = spanData.attributes["test.type"] {
74
- self.name = "XCTest.\(testType.description)"
+ if let type = spanData.attributes["type"] {
+ self.name = spanData.name
75
} else {
76
self.name = spanData.name + "." + spanData.kind.rawValue
77
}
0 commit comments