@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/browser/index.js
CHANGED
|
@@ -24654,7 +24654,7 @@ const CONTINUOUS_DEBUGGING_TIMEOUT = 60000; // 1 minutes
|
|
|
24654
24654
|
const DEBUG_SESSION_MAX_DURATION_SECONDS = 10 * 60 + 30; // TODO: move to shared config otel core
|
|
24655
24655
|
const REMOTE_SESSION_RECORDING_START = 'remote-session-recording:start';
|
|
24656
24656
|
const REMOTE_SESSION_RECORDING_STOP = 'remote-session-recording:stop';
|
|
24657
|
-
const PACKAGE_VERSION_EXPORT = "1.3.
|
|
24657
|
+
const PACKAGE_VERSION_EXPORT = "1.3.8" || 0;
|
|
24658
24658
|
// Regex patterns for OpenTelemetry ignore URLs
|
|
24659
24659
|
const OTEL_IGNORE_URLS = [
|
|
24660
24660
|
// Traces endpoint
|
|
@@ -25220,7 +25220,6 @@ class NavigationRecorder {
|
|
|
25220
25220
|
this.navigationStartTime = timestamp;
|
|
25221
25221
|
}
|
|
25222
25222
|
recordSpan(payload) {
|
|
25223
|
-
var _a;
|
|
25224
25223
|
try {
|
|
25225
25224
|
const span = _opentelemetry_api__WEBPACK_IMPORTED_MODULE_1__.trace.getTracer('navigation').startSpan('Navigation.navigate', {
|
|
25226
25225
|
startTime: payload.timestamp,
|
|
@@ -25229,11 +25228,6 @@ class NavigationRecorder {
|
|
|
25229
25228
|
'navigation.operation': 'navigate',
|
|
25230
25229
|
'navigation.type': 'navigate',
|
|
25231
25230
|
'navigation.platform': 'web',
|
|
25232
|
-
'navigation.session_id': (_a = this.sessionContext.sessionId) !== null && _a !== void 0 ? _a : undefined,
|
|
25233
|
-
'navigation.session_type': this.sessionContext.sessionType,
|
|
25234
|
-
'navigation.application': this.config.application,
|
|
25235
|
-
'navigation.environment': this.config.environment,
|
|
25236
|
-
'navigation.version': this.config.version,
|
|
25237
25231
|
},
|
|
25238
25232
|
});
|
|
25239
25233
|
if (payload.routeName) {
|