@industry-theme/principal-view-panels 0.10.12 → 0.10.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/panels.bundle.js
CHANGED
|
@@ -109273,11 +109273,17 @@ function groupSpansByTrace(resourceSpans) {
|
|
|
109273
109273
|
scenarioId,
|
|
109274
109274
|
scenarioName
|
|
109275
109275
|
} : void 0;
|
|
109276
|
+
const serviceVersion = getAttributeValue(resource.attributes, "service.version");
|
|
109277
|
+
const repositoryUrl = getAttributeValue(resource.attributes, "service.repository.url");
|
|
109278
|
+
const commitSha = getAttributeValue(resource.attributes, "service.commit.sha");
|
|
109276
109279
|
traces.push({
|
|
109277
109280
|
traceId,
|
|
109278
109281
|
spans,
|
|
109279
109282
|
rootSpan,
|
|
109280
109283
|
serviceName: getServiceName(resource),
|
|
109284
|
+
serviceVersion,
|
|
109285
|
+
repositoryUrl,
|
|
109286
|
+
commitSha,
|
|
109281
109287
|
startTime,
|
|
109282
109288
|
endTime,
|
|
109283
109289
|
duration: endTime - startTime,
|