@multiplayer-app/session-recorder-browser 1.3.6 → 1.3.8
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/browser/index.js +1 -7
- package/dist/exporters/index.js +1 -1
- package/dist/index.js +1 -7
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -7
- package/dist/index.umd.js.map +1 -1
- package/dist/navigation/navigationRecorder.d.ts.map +1 -1
- package/dist/navigation/navigationRecorder.js +0 -6
- package/dist/navigation/navigationRecorder.js.map +1 -1
- package/package.json +2 -2
package/dist/index.umd.js
CHANGED
|
@@ -23882,7 +23882,7 @@ const CONTINUOUS_DEBUGGING_TIMEOUT = 60000; // 1 minutes
|
|
|
23882
23882
|
const DEBUG_SESSION_MAX_DURATION_SECONDS = 10 * 60 + 30; // TODO: move to shared config otel core
|
|
23883
23883
|
const REMOTE_SESSION_RECORDING_START = 'remote-session-recording:start';
|
|
23884
23884
|
const REMOTE_SESSION_RECORDING_STOP = 'remote-session-recording:stop';
|
|
23885
|
-
const PACKAGE_VERSION_EXPORT = "1.3.
|
|
23885
|
+
const PACKAGE_VERSION_EXPORT = "1.3.8" || 0;
|
|
23886
23886
|
// Regex patterns for OpenTelemetry ignore URLs
|
|
23887
23887
|
const OTEL_IGNORE_URLS = [
|
|
23888
23888
|
// Traces endpoint
|
|
@@ -24425,7 +24425,6 @@ class NavigationRecorder {
|
|
|
24425
24425
|
this.navigationStartTime = timestamp;
|
|
24426
24426
|
}
|
|
24427
24427
|
recordSpan(payload) {
|
|
24428
|
-
var _a;
|
|
24429
24428
|
try {
|
|
24430
24429
|
const span = _opentelemetry_api__WEBPACK_IMPORTED_MODULE_1__.trace.getTracer('navigation').startSpan('Navigation.navigate', {
|
|
24431
24430
|
startTime: payload.timestamp,
|
|
@@ -24434,11 +24433,6 @@ class NavigationRecorder {
|
|
|
24434
24433
|
'navigation.operation': 'navigate',
|
|
24435
24434
|
'navigation.type': 'navigate',
|
|
24436
24435
|
'navigation.platform': 'web',
|
|
24437
|
-
'navigation.session_id': (_a = this.sessionContext.sessionId) !== null && _a !== void 0 ? _a : undefined,
|
|
24438
|
-
'navigation.session_type': this.sessionContext.sessionType,
|
|
24439
|
-
'navigation.application': this.config.application,
|
|
24440
|
-
'navigation.environment': this.config.environment,
|
|
24441
|
-
'navigation.version': this.config.version,
|
|
24442
24436
|
},
|
|
24443
24437
|
});
|
|
24444
24438
|
if (payload.routeName) {
|