@depup/datadog__browser-rum 6.31.0-depup.0
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/LICENSE +201 -0
- package/README.md +25 -0
- package/bundle/chunks/profiler-9f1c1103f1ef0aa98257-datadog-rum.js +1 -0
- package/bundle/chunks/recorder-926b641c6ef51d09a378-datadog-rum.js +1 -0
- package/bundle/datadog-rum.js +1 -0
- package/changes.json +5 -0
- package/cjs/boot/isBrowserSupported.d.ts +4 -0
- package/cjs/boot/isBrowserSupported.js +17 -0
- package/cjs/boot/isBrowserSupported.js.map +1 -0
- package/cjs/boot/lazyLoadProfiler.d.ts +3 -0
- package/cjs/boot/lazyLoadProfiler.js +56 -0
- package/cjs/boot/lazyLoadProfiler.js.map +1 -0
- package/cjs/boot/lazyLoadRecorder.d.ts +3 -0
- package/cjs/boot/lazyLoadRecorder.js +56 -0
- package/cjs/boot/lazyLoadRecorder.js.map +1 -0
- package/cjs/boot/postStartStrategy.d.ts +33 -0
- package/cjs/boot/postStartStrategy.js +98 -0
- package/cjs/boot/postStartStrategy.js.map +1 -0
- package/cjs/boot/preStartStrategy.d.ts +6 -0
- package/cjs/boot/preStartStrategy.js +24 -0
- package/cjs/boot/preStartStrategy.js.map +1 -0
- package/cjs/boot/profilerApi.d.ts +2 -0
- package/cjs/boot/profilerApi.js +52 -0
- package/cjs/boot/profilerApi.js.map +1 -0
- package/cjs/boot/recorderApi.d.ts +3 -0
- package/cjs/boot/recorderApi.js +71 -0
- package/cjs/boot/recorderApi.js.map +1 -0
- package/cjs/boot/startRecording.d.ts +6 -0
- package/cjs/boot/startRecording.js +45 -0
- package/cjs/boot/startRecording.js.map +1 -0
- package/cjs/domain/deflate/deflateEncoder.d.ts +3 -0
- package/cjs/domain/deflate/deflateEncoder.js +110 -0
- package/cjs/domain/deflate/deflateEncoder.js.map +1 -0
- package/cjs/domain/deflate/deflateWorker.d.ts +29 -0
- package/cjs/domain/deflate/deflateWorker.js +105 -0
- package/cjs/domain/deflate/deflateWorker.js.map +1 -0
- package/cjs/domain/deflate/index.d.ts +3 -0
- package/cjs/domain/deflate/index.js +11 -0
- package/cjs/domain/deflate/index.js.map +1 -0
- package/cjs/domain/getSessionReplayLink.d.ts +2 -0
- package/cjs/domain/getSessionReplayLink.js +35 -0
- package/cjs/domain/getSessionReplayLink.js.map +1 -0
- package/cjs/domain/profiling/actionHistory.d.ts +10 -0
- package/cjs/domain/profiling/actionHistory.js +49 -0
- package/cjs/domain/profiling/actionHistory.js.map +1 -0
- package/cjs/domain/profiling/longTaskHistory.d.ts +11 -0
- package/cjs/domain/profiling/longTaskHistory.js +28 -0
- package/cjs/domain/profiling/longTaskHistory.js.map +1 -0
- package/cjs/domain/profiling/profiler.d.ts +7 -0
- package/cjs/domain/profiling/profiler.js +267 -0
- package/cjs/domain/profiling/profiler.js.map +1 -0
- package/cjs/domain/profiling/profilingContext.d.ts +6 -0
- package/cjs/domain/profiling/profilingContext.js +31 -0
- package/cjs/domain/profiling/profilingContext.js.map +1 -0
- package/cjs/domain/profiling/profilingSupported.d.ts +1 -0
- package/cjs/domain/profiling/profilingSupported.js +11 -0
- package/cjs/domain/profiling/profilingSupported.js.map +1 -0
- package/cjs/domain/profiling/test-utils/mockedTrace.d.ts +3 -0
- package/cjs/domain/profiling/test-utils/mockedTrace.js +57 -0
- package/cjs/domain/profiling/test-utils/mockedTrace.js.map +1 -0
- package/cjs/domain/profiling/transport/assembly.d.ts +7 -0
- package/cjs/domain/profiling/transport/assembly.js +45 -0
- package/cjs/domain/profiling/transport/assembly.js.map +1 -0
- package/cjs/domain/profiling/transport/buildProfileEventAttributes.d.ts +33 -0
- package/cjs/domain/profiling/transport/buildProfileEventAttributes.js +63 -0
- package/cjs/domain/profiling/transport/buildProfileEventAttributes.js.map +1 -0
- package/cjs/domain/profiling/types/index.d.ts +2 -0
- package/cjs/domain/profiling/types/index.js +3 -0
- package/cjs/domain/profiling/types/index.js.map +1 -0
- package/cjs/domain/profiling/types/profilerApi.types.d.ts +58 -0
- package/cjs/domain/profiling/types/profilerApi.types.js +5 -0
- package/cjs/domain/profiling/types/profilerApi.types.js.map +1 -0
- package/cjs/domain/profiling/types/rumProfiler.types.d.ts +55 -0
- package/cjs/domain/profiling/types/rumProfiler.types.js +3 -0
- package/cjs/domain/profiling/types/rumProfiler.types.js.map +1 -0
- package/cjs/domain/profiling/utils/getCustomOrDefaultViewName.d.ts +1 -0
- package/cjs/domain/profiling/utils/getCustomOrDefaultViewName.js +7 -0
- package/cjs/domain/profiling/utils/getCustomOrDefaultViewName.js.map +1 -0
- package/cjs/domain/profiling/utils/getDefaultViewName.d.ts +1 -0
- package/cjs/domain/profiling/utils/getDefaultViewName.js +14 -0
- package/cjs/domain/profiling/utils/getDefaultViewName.js.map +1 -0
- package/cjs/domain/profiling/utils/getNumberOfSamples.d.ts +8 -0
- package/cjs/domain/profiling/utils/getNumberOfSamples.js +19 -0
- package/cjs/domain/profiling/utils/getNumberOfSamples.js.map +1 -0
- package/cjs/domain/profiling/vitalHistory.d.ts +10 -0
- package/cjs/domain/profiling/vitalHistory.js +42 -0
- package/cjs/domain/profiling/vitalHistory.js.map +1 -0
- package/cjs/domain/record/assembly.d.ts +3 -0
- package/cjs/domain/record/assembly.js +16 -0
- package/cjs/domain/record/assembly.js.map +1 -0
- package/cjs/domain/record/elementsScrollPositions.d.ts +10 -0
- package/cjs/domain/record/elementsScrollPositions.js +23 -0
- package/cjs/domain/record/elementsScrollPositions.js.map +1 -0
- package/cjs/domain/record/eventsUtils.d.ts +2 -0
- package/cjs/domain/record/eventsUtils.js +15 -0
- package/cjs/domain/record/eventsUtils.js.map +1 -0
- package/cjs/domain/record/index.d.ts +6 -0
- package/cjs/domain/record/index.js +17 -0
- package/cjs/domain/record/index.js.map +1 -0
- package/cjs/domain/record/internalApi.d.ts +22 -0
- package/cjs/domain/record/internalApi.js +55 -0
- package/cjs/domain/record/internalApi.js.map +1 -0
- package/cjs/domain/record/itemIds.d.ts +40 -0
- package/cjs/domain/record/itemIds.js +58 -0
- package/cjs/domain/record/itemIds.js.map +1 -0
- package/cjs/domain/record/mutationBatch.d.ts +12 -0
- package/cjs/domain/record/mutationBatch.js +44 -0
- package/cjs/domain/record/mutationBatch.js.map +1 -0
- package/cjs/domain/record/record.d.ts +16 -0
- package/cjs/domain/record/record.js +88 -0
- package/cjs/domain/record/record.js.map +1 -0
- package/cjs/domain/record/record.types.d.ts +18 -0
- package/cjs/domain/record/record.types.js +3 -0
- package/cjs/domain/record/record.types.js.map +1 -0
- package/cjs/domain/record/recordingScope.d.ts +24 -0
- package/cjs/domain/record/recordingScope.js +29 -0
- package/cjs/domain/record/recordingScope.js.map +1 -0
- package/cjs/domain/record/serialization/changeEncoder.d.ts +22 -0
- package/cjs/domain/record/serialization/changeEncoder.js +59 -0
- package/cjs/domain/record/serialization/changeEncoder.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/changeConverter.d.ts +10 -0
- package/cjs/domain/record/serialization/conversions/changeConverter.js +216 -0
- package/cjs/domain/record/serialization/conversions/changeConverter.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/changeDecoder.d.ts +16 -0
- package/cjs/domain/record/serialization/conversions/changeDecoder.js +137 -0
- package/cjs/domain/record/serialization/conversions/changeDecoder.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/index.d.ts +7 -0
- package/cjs/domain/record/serialization/conversions/index.js +11 -0
- package/cjs/domain/record/serialization/conversions/index.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/mutationLog.d.ts +15 -0
- package/cjs/domain/record/serialization/conversions/mutationLog.js +36 -0
- package/cjs/domain/record/serialization/conversions/mutationLog.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/nodeIdRemapper.d.ts +10 -0
- package/cjs/domain/record/serialization/conversions/nodeIdRemapper.js +53 -0
- package/cjs/domain/record/serialization/conversions/nodeIdRemapper.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/renderOptions.d.ts +6 -0
- package/cjs/domain/record/serialization/conversions/renderOptions.js +12 -0
- package/cjs/domain/record/serialization/conversions/renderOptions.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/stringTable.d.ts +5 -0
- package/cjs/domain/record/serialization/conversions/stringTable.js +22 -0
- package/cjs/domain/record/serialization/conversions/stringTable.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/vDocument.d.ts +23 -0
- package/cjs/domain/record/serialization/conversions/vDocument.js +176 -0
- package/cjs/domain/record/serialization/conversions/vDocument.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/vNode.d.ts +66 -0
- package/cjs/domain/record/serialization/conversions/vNode.js +285 -0
- package/cjs/domain/record/serialization/conversions/vNode.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/vStyleSheet.d.ts +16 -0
- package/cjs/domain/record/serialization/conversions/vStyleSheet.js +29 -0
- package/cjs/domain/record/serialization/conversions/vStyleSheet.js.map +1 -0
- package/cjs/domain/record/serialization/experimentalFeatures.d.ts +2 -0
- package/cjs/domain/record/serialization/experimentalFeatures.js +16 -0
- package/cjs/domain/record/serialization/experimentalFeatures.js.map +1 -0
- package/cjs/domain/record/serialization/index.d.ts +17 -0
- package/cjs/domain/record/serialization/index.js +37 -0
- package/cjs/domain/record/serialization/index.js.map +1 -0
- package/cjs/domain/record/serialization/insertionCursor.d.ts +57 -0
- package/cjs/domain/record/serialization/insertionCursor.js +68 -0
- package/cjs/domain/record/serialization/insertionCursor.js.map +1 -0
- package/cjs/domain/record/serialization/serialization.types.d.ts +24 -0
- package/cjs/domain/record/serialization/serialization.types.js +3 -0
- package/cjs/domain/record/serialization/serialization.types.js.map +1 -0
- package/cjs/domain/record/serialization/serializationStats.d.ts +12 -0
- package/cjs/domain/record/serialization/serializationStats.js +32 -0
- package/cjs/domain/record/serialization/serializationStats.js.map +1 -0
- package/cjs/domain/record/serialization/serializationTransaction.d.ts +96 -0
- package/cjs/domain/record/serialization/serializationTransaction.js +103 -0
- package/cjs/domain/record/serialization/serializationTransaction.js.map +1 -0
- package/cjs/domain/record/serialization/serializationUtils.d.ts +18 -0
- package/cjs/domain/record/serialization/serializationUtils.js +88 -0
- package/cjs/domain/record/serialization/serializationUtils.js.map +1 -0
- package/cjs/domain/record/serialization/serializeAttribute.d.ts +4 -0
- package/cjs/domain/record/serialization/serializeAttribute.js +42 -0
- package/cjs/domain/record/serialization/serializeAttribute.js.map +1 -0
- package/cjs/domain/record/serialization/serializeAttributes.d.ts +7 -0
- package/cjs/domain/record/serialization/serializeAttributes.js +167 -0
- package/cjs/domain/record/serialization/serializeAttributes.js.map +1 -0
- package/cjs/domain/record/serialization/serializeFullSnapshot.d.ts +5 -0
- package/cjs/domain/record/serialization/serializeFullSnapshot.js +34 -0
- package/cjs/domain/record/serialization/serializeFullSnapshot.js.map +1 -0
- package/cjs/domain/record/serialization/serializeFullSnapshotAsChange.d.ts +5 -0
- package/cjs/domain/record/serialization/serializeFullSnapshotAsChange.js +13 -0
- package/cjs/domain/record/serialization/serializeFullSnapshotAsChange.js.map +1 -0
- package/cjs/domain/record/serialization/serializeMutations.d.ts +11 -0
- package/cjs/domain/record/serialization/serializeMutations.js +262 -0
- package/cjs/domain/record/serialization/serializeMutations.js.map +1 -0
- package/cjs/domain/record/serialization/serializeMutationsAsChange.d.ts +5 -0
- package/cjs/domain/record/serialization/serializeMutationsAsChange.js +204 -0
- package/cjs/domain/record/serialization/serializeMutationsAsChange.js.map +1 -0
- package/cjs/domain/record/serialization/serializeNode.d.ts +7 -0
- package/cjs/domain/record/serialization/serializeNode.js +154 -0
- package/cjs/domain/record/serialization/serializeNode.js.map +1 -0
- package/cjs/domain/record/serialization/serializeNodeAsChange.d.ts +4 -0
- package/cjs/domain/record/serialization/serializeNodeAsChange.js +153 -0
- package/cjs/domain/record/serialization/serializeNodeAsChange.js.map +1 -0
- package/cjs/domain/record/serialization/serializeStyleSheets.d.ts +3 -0
- package/cjs/domain/record/serialization/serializeStyleSheets.js +30 -0
- package/cjs/domain/record/serialization/serializeStyleSheets.js.map +1 -0
- package/cjs/domain/record/serializationVerifier.d.ts +18 -0
- package/cjs/domain/record/serializationVerifier.js +126 -0
- package/cjs/domain/record/serializationVerifier.js.map +1 -0
- package/cjs/domain/record/shadowRootsController.d.ts +11 -0
- package/cjs/domain/record/shadowRootsController.js +45 -0
- package/cjs/domain/record/shadowRootsController.js.map +1 -0
- package/cjs/domain/record/startFullSnapshots.d.ts +10 -0
- package/cjs/domain/record/startFullSnapshots.js +50 -0
- package/cjs/domain/record/startFullSnapshots.js.map +1 -0
- package/cjs/domain/record/trackers/index.d.ts +12 -0
- package/cjs/domain/record/trackers/index.js +27 -0
- package/cjs/domain/record/trackers/index.js.map +1 -0
- package/cjs/domain/record/trackers/trackFocus.d.ts +5 -0
- package/cjs/domain/record/trackers/trackFocus.js +15 -0
- package/cjs/domain/record/trackers/trackFocus.js.map +1 -0
- package/cjs/domain/record/trackers/trackFrustration.d.ts +6 -0
- package/cjs/domain/record/trackers/trackFrustration.js +31 -0
- package/cjs/domain/record/trackers/trackFrustration.js.map +1 -0
- package/cjs/domain/record/trackers/trackInput.d.ts +4 -0
- package/cjs/domain/record/trackers/trackInput.js +104 -0
- package/cjs/domain/record/trackers/trackInput.js.map +1 -0
- package/cjs/domain/record/trackers/trackMediaInteraction.d.ts +5 -0
- package/cjs/domain/record/trackers/trackMediaInteraction.js +29 -0
- package/cjs/domain/record/trackers/trackMediaInteraction.js.map +1 -0
- package/cjs/domain/record/trackers/trackMouseInteraction.d.ts +5 -0
- package/cjs/domain/record/trackers/trackMouseInteraction.js +59 -0
- package/cjs/domain/record/trackers/trackMouseInteraction.js.map +1 -0
- package/cjs/domain/record/trackers/trackMove.d.ts +9 -0
- package/cjs/domain/record/trackers/trackMove.js +55 -0
- package/cjs/domain/record/trackers/trackMove.js.map +1 -0
- package/cjs/domain/record/trackers/trackMutation.d.ts +13 -0
- package/cjs/domain/record/trackers/trackMutation.js +41 -0
- package/cjs/domain/record/trackers/trackMutation.js.map +1 -0
- package/cjs/domain/record/trackers/trackScroll.d.ts +5 -0
- package/cjs/domain/record/trackers/trackScroll.js +48 -0
- package/cjs/domain/record/trackers/trackScroll.js.map +1 -0
- package/cjs/domain/record/trackers/trackStyleSheet.d.ts +6 -0
- package/cjs/domain/record/trackers/trackStyleSheet.js +89 -0
- package/cjs/domain/record/trackers/trackStyleSheet.js.map +1 -0
- package/cjs/domain/record/trackers/trackViewEnd.d.ts +5 -0
- package/cjs/domain/record/trackers/trackViewEnd.js +20 -0
- package/cjs/domain/record/trackers/trackViewEnd.js.map +1 -0
- package/cjs/domain/record/trackers/trackViewportResize.d.ts +6 -0
- package/cjs/domain/record/trackers/trackViewportResize.js +46 -0
- package/cjs/domain/record/trackers/trackViewportResize.js.map +1 -0
- package/cjs/domain/record/trackers/tracker.types.d.ts +3 -0
- package/cjs/domain/record/trackers/tracker.types.js +3 -0
- package/cjs/domain/record/trackers/tracker.types.js.map +1 -0
- package/cjs/domain/record/viewports.d.ts +20 -0
- package/cjs/domain/record/viewports.js +60 -0
- package/cjs/domain/record/viewports.js.map +1 -0
- package/cjs/domain/replayStats.d.ts +8 -0
- package/cjs/domain/replayStats.js +60 -0
- package/cjs/domain/replayStats.js.map +1 -0
- package/cjs/domain/scriptLoadingError.d.ts +6 -0
- package/cjs/domain/scriptLoadingError.js +26 -0
- package/cjs/domain/scriptLoadingError.js.map +1 -0
- package/cjs/domain/segmentCollection/buildReplayPayload.d.ts +15 -0
- package/cjs/domain/segmentCollection/buildReplayPayload.js +26 -0
- package/cjs/domain/segmentCollection/buildReplayPayload.js.map +1 -0
- package/cjs/domain/segmentCollection/index.d.ts +4 -0
- package/cjs/domain/segmentCollection/index.js +11 -0
- package/cjs/domain/segmentCollection/index.js.map +1 -0
- package/cjs/domain/segmentCollection/segment.d.ts +16 -0
- package/cjs/domain/segmentCollection/segment.js +82 -0
- package/cjs/domain/segmentCollection/segment.js.map +1 -0
- package/cjs/domain/segmentCollection/segmentCollection.d.ts +31 -0
- package/cjs/domain/segmentCollection/segmentCollection.js +113 -0
- package/cjs/domain/segmentCollection/segmentCollection.js.map +1 -0
- package/cjs/domain/segmentCollection/startSegmentTelemetry.d.ts +6 -0
- package/cjs/domain/segmentCollection/startSegmentTelemetry.js +52 -0
- package/cjs/domain/segmentCollection/startSegmentTelemetry.js.map +1 -0
- package/cjs/domain/startRecordBridge.d.ts +5 -0
- package/cjs/domain/startRecordBridge.js +17 -0
- package/cjs/domain/startRecordBridge.js.map +1 -0
- package/cjs/domain/startRecorderInitTelemetry.d.ts +15 -0
- package/cjs/domain/startRecorderInitTelemetry.js +55 -0
- package/cjs/domain/startRecorderInitTelemetry.js.map +1 -0
- package/cjs/entries/internal.d.ts +11 -0
- package/cjs/entries/internal.js +28 -0
- package/cjs/entries/internal.js.map +1 -0
- package/cjs/entries/internalSynthetics.d.ts +2 -0
- package/cjs/entries/internalSynthetics.js +27 -0
- package/cjs/entries/internalSynthetics.js.map +1 -0
- package/cjs/entries/main.d.ts +23 -0
- package/cjs/entries/main.js +35 -0
- package/cjs/entries/main.js.map +1 -0
- package/cjs/types/index.d.ts +3 -0
- package/cjs/types/index.js +18 -0
- package/cjs/types/index.js.map +1 -0
- package/cjs/types/profiling.d.ts +296 -0
- package/cjs/types/profiling.js +6 -0
- package/cjs/types/profiling.js.map +1 -0
- package/cjs/types/sessionReplay.d.ts +934 -0
- package/cjs/types/sessionReplay.js +6 -0
- package/cjs/types/sessionReplay.js.map +1 -0
- package/cjs/types/sessionReplayConstants.d.ts +71 -0
- package/cjs/types/sessionReplayConstants.js +67 -0
- package/cjs/types/sessionReplayConstants.js.map +1 -0
- package/esm/boot/isBrowserSupported.d.ts +4 -0
- package/esm/boot/isBrowserSupported.js +14 -0
- package/esm/boot/isBrowserSupported.js.map +1 -0
- package/esm/boot/lazyLoadProfiler.d.ts +3 -0
- package/esm/boot/lazyLoadProfiler.js +19 -0
- package/esm/boot/lazyLoadProfiler.js.map +1 -0
- package/esm/boot/lazyLoadRecorder.d.ts +3 -0
- package/esm/boot/lazyLoadRecorder.js +19 -0
- package/esm/boot/lazyLoadRecorder.js.map +1 -0
- package/esm/boot/postStartStrategy.d.ts +33 -0
- package/esm/boot/postStartStrategy.js +95 -0
- package/esm/boot/postStartStrategy.js.map +1 -0
- package/esm/boot/preStartStrategy.d.ts +6 -0
- package/esm/boot/preStartStrategy.js +21 -0
- package/esm/boot/preStartStrategy.js.map +1 -0
- package/esm/boot/profilerApi.d.ts +2 -0
- package/esm/boot/profilerApi.js +49 -0
- package/esm/boot/profilerApi.js.map +1 -0
- package/esm/boot/recorderApi.d.ts +3 -0
- package/esm/boot/recorderApi.js +68 -0
- package/esm/boot/recorderApi.js.map +1 -0
- package/esm/boot/startRecording.d.ts +6 -0
- package/esm/boot/startRecording.js +42 -0
- package/esm/boot/startRecording.js.map +1 -0
- package/esm/domain/deflate/deflateEncoder.d.ts +3 -0
- package/esm/domain/deflate/deflateEncoder.js +107 -0
- package/esm/domain/deflate/deflateEncoder.js.map +1 -0
- package/esm/domain/deflate/deflateWorker.d.ts +29 -0
- package/esm/domain/deflate/deflateWorker.js +97 -0
- package/esm/domain/deflate/deflateWorker.js.map +1 -0
- package/esm/domain/deflate/index.d.ts +3 -0
- package/esm/domain/deflate/index.js +3 -0
- package/esm/domain/deflate/index.js.map +1 -0
- package/esm/domain/getSessionReplayLink.d.ts +2 -0
- package/esm/domain/getSessionReplayLink.js +32 -0
- package/esm/domain/getSessionReplayLink.js.map +1 -0
- package/esm/domain/profiling/actionHistory.d.ts +10 -0
- package/esm/domain/profiling/actionHistory.js +45 -0
- package/esm/domain/profiling/actionHistory.js.map +1 -0
- package/esm/domain/profiling/longTaskHistory.d.ts +11 -0
- package/esm/domain/profiling/longTaskHistory.js +24 -0
- package/esm/domain/profiling/longTaskHistory.js.map +1 -0
- package/esm/domain/profiling/profiler.d.ts +7 -0
- package/esm/domain/profiling/profiler.js +263 -0
- package/esm/domain/profiling/profiler.js.map +1 -0
- package/esm/domain/profiling/profilingContext.d.ts +6 -0
- package/esm/domain/profiling/profilingContext.js +28 -0
- package/esm/domain/profiling/profilingContext.js.map +1 -0
- package/esm/domain/profiling/profilingSupported.d.ts +1 -0
- package/esm/domain/profiling/profilingSupported.js +8 -0
- package/esm/domain/profiling/profilingSupported.js.map +1 -0
- package/esm/domain/profiling/test-utils/mockedTrace.d.ts +3 -0
- package/esm/domain/profiling/test-utils/mockedTrace.js +54 -0
- package/esm/domain/profiling/test-utils/mockedTrace.js.map +1 -0
- package/esm/domain/profiling/transport/assembly.d.ts +7 -0
- package/esm/domain/profiling/transport/assembly.js +42 -0
- package/esm/domain/profiling/transport/assembly.js.map +1 -0
- package/esm/domain/profiling/transport/buildProfileEventAttributes.d.ts +33 -0
- package/esm/domain/profiling/transport/buildProfileEventAttributes.js +60 -0
- package/esm/domain/profiling/transport/buildProfileEventAttributes.js.map +1 -0
- package/esm/domain/profiling/types/index.d.ts +2 -0
- package/esm/domain/profiling/types/index.js +2 -0
- package/esm/domain/profiling/types/index.js.map +1 -0
- package/esm/domain/profiling/types/profilerApi.types.d.ts +58 -0
- package/esm/domain/profiling/types/profilerApi.types.js +4 -0
- package/esm/domain/profiling/types/profilerApi.types.js.map +1 -0
- package/esm/domain/profiling/types/rumProfiler.types.d.ts +55 -0
- package/esm/domain/profiling/types/rumProfiler.types.js +2 -0
- package/esm/domain/profiling/types/rumProfiler.types.js.map +1 -0
- package/esm/domain/profiling/utils/getCustomOrDefaultViewName.d.ts +1 -0
- package/esm/domain/profiling/utils/getCustomOrDefaultViewName.js +3 -0
- package/esm/domain/profiling/utils/getCustomOrDefaultViewName.js.map +1 -0
- package/esm/domain/profiling/utils/getDefaultViewName.d.ts +1 -0
- package/esm/domain/profiling/utils/getDefaultViewName.js +11 -0
- package/esm/domain/profiling/utils/getDefaultViewName.js.map +1 -0
- package/esm/domain/profiling/utils/getNumberOfSamples.d.ts +8 -0
- package/esm/domain/profiling/utils/getNumberOfSamples.js +16 -0
- package/esm/domain/profiling/utils/getNumberOfSamples.js.map +1 -0
- package/esm/domain/profiling/vitalHistory.d.ts +10 -0
- package/esm/domain/profiling/vitalHistory.js +38 -0
- package/esm/domain/profiling/vitalHistory.js.map +1 -0
- package/esm/domain/record/assembly.d.ts +3 -0
- package/esm/domain/record/assembly.js +13 -0
- package/esm/domain/record/assembly.js.map +1 -0
- package/esm/domain/record/elementsScrollPositions.d.ts +10 -0
- package/esm/domain/record/elementsScrollPositions.js +20 -0
- package/esm/domain/record/elementsScrollPositions.js.map +1 -0
- package/esm/domain/record/eventsUtils.d.ts +2 -0
- package/esm/domain/record/eventsUtils.js +11 -0
- package/esm/domain/record/eventsUtils.js.map +1 -0
- package/esm/domain/record/index.d.ts +6 -0
- package/esm/domain/record/index.js +5 -0
- package/esm/domain/record/index.js.map +1 -0
- package/esm/domain/record/internalApi.d.ts +22 -0
- package/esm/domain/record/internalApi.js +51 -0
- package/esm/domain/record/internalApi.js.map +1 -0
- package/esm/domain/record/itemIds.d.ts +40 -0
- package/esm/domain/record/itemIds.js +52 -0
- package/esm/domain/record/itemIds.js.map +1 -0
- package/esm/domain/record/mutationBatch.d.ts +12 -0
- package/esm/domain/record/mutationBatch.js +40 -0
- package/esm/domain/record/mutationBatch.js.map +1 -0
- package/esm/domain/record/record.d.ts +16 -0
- package/esm/domain/record/record.js +52 -0
- package/esm/domain/record/record.js.map +1 -0
- package/esm/domain/record/record.types.d.ts +18 -0
- package/esm/domain/record/record.types.js +2 -0
- package/esm/domain/record/record.types.js.map +1 -0
- package/esm/domain/record/recordingScope.d.ts +24 -0
- package/esm/domain/record/recordingScope.js +26 -0
- package/esm/domain/record/recordingScope.js.map +1 -0
- package/esm/domain/record/serialization/changeEncoder.d.ts +22 -0
- package/esm/domain/record/serialization/changeEncoder.js +56 -0
- package/esm/domain/record/serialization/changeEncoder.js.map +1 -0
- package/esm/domain/record/serialization/conversions/changeConverter.d.ts +10 -0
- package/esm/domain/record/serialization/conversions/changeConverter.js +213 -0
- package/esm/domain/record/serialization/conversions/changeConverter.js.map +1 -0
- package/esm/domain/record/serialization/conversions/changeDecoder.d.ts +16 -0
- package/esm/domain/record/serialization/conversions/changeDecoder.js +134 -0
- package/esm/domain/record/serialization/conversions/changeDecoder.js.map +1 -0
- package/esm/domain/record/serialization/conversions/index.d.ts +7 -0
- package/esm/domain/record/serialization/conversions/index.js +4 -0
- package/esm/domain/record/serialization/conversions/index.js.map +1 -0
- package/esm/domain/record/serialization/conversions/mutationLog.d.ts +15 -0
- package/esm/domain/record/serialization/conversions/mutationLog.js +33 -0
- package/esm/domain/record/serialization/conversions/mutationLog.js.map +1 -0
- package/esm/domain/record/serialization/conversions/nodeIdRemapper.d.ts +10 -0
- package/esm/domain/record/serialization/conversions/nodeIdRemapper.js +49 -0
- package/esm/domain/record/serialization/conversions/nodeIdRemapper.js.map +1 -0
- package/esm/domain/record/serialization/conversions/renderOptions.d.ts +6 -0
- package/esm/domain/record/serialization/conversions/renderOptions.js +9 -0
- package/esm/domain/record/serialization/conversions/renderOptions.js.map +1 -0
- package/esm/domain/record/serialization/conversions/stringTable.d.ts +5 -0
- package/esm/domain/record/serialization/conversions/stringTable.js +19 -0
- package/esm/domain/record/serialization/conversions/stringTable.js.map +1 -0
- package/esm/domain/record/serialization/conversions/vDocument.d.ts +23 -0
- package/esm/domain/record/serialization/conversions/vDocument.js +173 -0
- package/esm/domain/record/serialization/conversions/vDocument.js.map +1 -0
- package/esm/domain/record/serialization/conversions/vNode.d.ts +66 -0
- package/esm/domain/record/serialization/conversions/vNode.js +282 -0
- package/esm/domain/record/serialization/conversions/vNode.js.map +1 -0
- package/esm/domain/record/serialization/conversions/vStyleSheet.d.ts +16 -0
- package/esm/domain/record/serialization/conversions/vStyleSheet.js +26 -0
- package/esm/domain/record/serialization/conversions/vStyleSheet.js.map +1 -0
- package/esm/domain/record/serialization/experimentalFeatures.d.ts +2 -0
- package/esm/domain/record/serialization/experimentalFeatures.js +12 -0
- package/esm/domain/record/serialization/experimentalFeatures.js.map +1 -0
- package/esm/domain/record/serialization/index.d.ts +17 -0
- package/esm/domain/record/serialization/index.js +14 -0
- package/esm/domain/record/serialization/index.js.map +1 -0
- package/esm/domain/record/serialization/insertionCursor.d.ts +57 -0
- package/esm/domain/record/serialization/insertionCursor.js +64 -0
- package/esm/domain/record/serialization/insertionCursor.js.map +1 -0
- package/esm/domain/record/serialization/serialization.types.d.ts +24 -0
- package/esm/domain/record/serialization/serialization.types.js +2 -0
- package/esm/domain/record/serialization/serialization.types.js.map +1 -0
- package/esm/domain/record/serialization/serializationStats.d.ts +12 -0
- package/esm/domain/record/serialization/serializationStats.js +27 -0
- package/esm/domain/record/serialization/serializationStats.js.map +1 -0
- package/esm/domain/record/serialization/serializationTransaction.d.ts +96 -0
- package/esm/domain/record/serialization/serializationTransaction.js +99 -0
- package/esm/domain/record/serialization/serializationTransaction.js.map +1 -0
- package/esm/domain/record/serialization/serializationUtils.d.ts +18 -0
- package/esm/domain/record/serialization/serializationUtils.js +80 -0
- package/esm/domain/record/serialization/serializationUtils.js.map +1 -0
- package/esm/domain/record/serialization/serializeAttribute.d.ts +4 -0
- package/esm/domain/record/serialization/serializeAttribute.js +38 -0
- package/esm/domain/record/serialization/serializeAttribute.js.map +1 -0
- package/esm/domain/record/serialization/serializeAttributes.d.ts +7 -0
- package/esm/domain/record/serialization/serializeAttributes.js +161 -0
- package/esm/domain/record/serialization/serializeAttributes.js.map +1 -0
- package/esm/domain/record/serialization/serializeFullSnapshot.d.ts +5 -0
- package/esm/domain/record/serialization/serializeFullSnapshot.js +31 -0
- package/esm/domain/record/serialization/serializeFullSnapshot.js.map +1 -0
- package/esm/domain/record/serialization/serializeFullSnapshotAsChange.d.ts +5 -0
- package/esm/domain/record/serialization/serializeFullSnapshotAsChange.js +10 -0
- package/esm/domain/record/serialization/serializeFullSnapshotAsChange.js.map +1 -0
- package/esm/domain/record/serialization/serializeMutations.d.ts +11 -0
- package/esm/domain/record/serialization/serializeMutations.js +257 -0
- package/esm/domain/record/serialization/serializeMutations.js.map +1 -0
- package/esm/domain/record/serialization/serializeMutationsAsChange.d.ts +5 -0
- package/esm/domain/record/serialization/serializeMutationsAsChange.js +201 -0
- package/esm/domain/record/serialization/serializeMutationsAsChange.js.map +1 -0
- package/esm/domain/record/serialization/serializeNode.d.ts +7 -0
- package/esm/domain/record/serialization/serializeNode.js +149 -0
- package/esm/domain/record/serialization/serializeNode.js.map +1 -0
- package/esm/domain/record/serialization/serializeNodeAsChange.d.ts +4 -0
- package/esm/domain/record/serialization/serializeNodeAsChange.js +150 -0
- package/esm/domain/record/serialization/serializeNodeAsChange.js.map +1 -0
- package/esm/domain/record/serialization/serializeStyleSheets.d.ts +3 -0
- package/esm/domain/record/serialization/serializeStyleSheets.js +27 -0
- package/esm/domain/record/serialization/serializeStyleSheets.js.map +1 -0
- package/esm/domain/record/serializationVerifier.d.ts +18 -0
- package/esm/domain/record/serializationVerifier.js +123 -0
- package/esm/domain/record/serializationVerifier.js.map +1 -0
- package/esm/domain/record/shadowRootsController.d.ts +11 -0
- package/esm/domain/record/shadowRootsController.js +41 -0
- package/esm/domain/record/shadowRootsController.js.map +1 -0
- package/esm/domain/record/startFullSnapshots.d.ts +10 -0
- package/esm/domain/record/startFullSnapshots.js +46 -0
- package/esm/domain/record/startFullSnapshots.js.map +1 -0
- package/esm/domain/record/trackers/index.d.ts +12 -0
- package/esm/domain/record/trackers/index.js +12 -0
- package/esm/domain/record/trackers/index.js.map +1 -0
- package/esm/domain/record/trackers/trackFocus.d.ts +5 -0
- package/esm/domain/record/trackers/trackFocus.js +12 -0
- package/esm/domain/record/trackers/trackFocus.js.map +1 -0
- package/esm/domain/record/trackers/trackFrustration.d.ts +6 -0
- package/esm/domain/record/trackers/trackFrustration.js +28 -0
- package/esm/domain/record/trackers/trackFrustration.js.map +1 -0
- package/esm/domain/record/trackers/trackInput.d.ts +4 -0
- package/esm/domain/record/trackers/trackInput.js +101 -0
- package/esm/domain/record/trackers/trackInput.js.map +1 -0
- package/esm/domain/record/trackers/trackMediaInteraction.d.ts +5 -0
- package/esm/domain/record/trackers/trackMediaInteraction.js +26 -0
- package/esm/domain/record/trackers/trackMediaInteraction.js.map +1 -0
- package/esm/domain/record/trackers/trackMouseInteraction.d.ts +5 -0
- package/esm/domain/record/trackers/trackMouseInteraction.js +56 -0
- package/esm/domain/record/trackers/trackMouseInteraction.js.map +1 -0
- package/esm/domain/record/trackers/trackMove.d.ts +9 -0
- package/esm/domain/record/trackers/trackMove.js +51 -0
- package/esm/domain/record/trackers/trackMove.js.map +1 -0
- package/esm/domain/record/trackers/trackMutation.d.ts +13 -0
- package/esm/domain/record/trackers/trackMutation.js +38 -0
- package/esm/domain/record/trackers/trackMutation.js.map +1 -0
- package/esm/domain/record/trackers/trackScroll.d.ts +5 -0
- package/esm/domain/record/trackers/trackScroll.js +45 -0
- package/esm/domain/record/trackers/trackScroll.js.map +1 -0
- package/esm/domain/record/trackers/trackStyleSheet.d.ts +6 -0
- package/esm/domain/record/trackers/trackStyleSheet.js +85 -0
- package/esm/domain/record/trackers/trackStyleSheet.js.map +1 -0
- package/esm/domain/record/trackers/trackViewEnd.d.ts +5 -0
- package/esm/domain/record/trackers/trackViewEnd.js +17 -0
- package/esm/domain/record/trackers/trackViewEnd.js.map +1 -0
- package/esm/domain/record/trackers/trackViewportResize.d.ts +6 -0
- package/esm/domain/record/trackers/trackViewportResize.js +42 -0
- package/esm/domain/record/trackers/trackViewportResize.js.map +1 -0
- package/esm/domain/record/trackers/tracker.types.d.ts +3 -0
- package/esm/domain/record/trackers/tracker.types.js +2 -0
- package/esm/domain/record/trackers/tracker.types.js.map +1 -0
- package/esm/domain/record/viewports.d.ts +20 -0
- package/esm/domain/record/viewports.js +55 -0
- package/esm/domain/record/viewports.js.map +1 -0
- package/esm/domain/replayStats.d.ts +8 -0
- package/esm/domain/replayStats.js +51 -0
- package/esm/domain/replayStats.js.map +1 -0
- package/esm/domain/scriptLoadingError.d.ts +6 -0
- package/esm/domain/scriptLoadingError.js +23 -0
- package/esm/domain/scriptLoadingError.js.map +1 -0
- package/esm/domain/segmentCollection/buildReplayPayload.d.ts +15 -0
- package/esm/domain/segmentCollection/buildReplayPayload.js +23 -0
- package/esm/domain/segmentCollection/buildReplayPayload.js.map +1 -0
- package/esm/domain/segmentCollection/index.d.ts +4 -0
- package/esm/domain/segmentCollection/index.js +4 -0
- package/esm/domain/segmentCollection/index.js.map +1 -0
- package/esm/domain/segmentCollection/segment.d.ts +16 -0
- package/esm/domain/segmentCollection/segment.js +46 -0
- package/esm/domain/segmentCollection/segment.js.map +1 -0
- package/esm/domain/segmentCollection/segmentCollection.d.ts +31 -0
- package/esm/domain/segmentCollection/segmentCollection.js +106 -0
- package/esm/domain/segmentCollection/segmentCollection.js.map +1 -0
- package/esm/domain/segmentCollection/startSegmentTelemetry.d.ts +6 -0
- package/esm/domain/segmentCollection/startSegmentTelemetry.js +49 -0
- package/esm/domain/segmentCollection/startSegmentTelemetry.js.map +1 -0
- package/esm/domain/startRecordBridge.d.ts +5 -0
- package/esm/domain/startRecordBridge.js +14 -0
- package/esm/domain/startRecordBridge.js.map +1 -0
- package/esm/domain/startRecorderInitTelemetry.d.ts +15 -0
- package/esm/domain/startRecorderInitTelemetry.js +52 -0
- package/esm/domain/startRecorderInitTelemetry.js.map +1 -0
- package/esm/entries/internal.d.ts +11 -0
- package/esm/entries/internal.js +4 -0
- package/esm/entries/internal.js.map +1 -0
- package/esm/entries/internalSynthetics.d.ts +2 -0
- package/esm/entries/internalSynthetics.js +23 -0
- package/esm/entries/internalSynthetics.js.map +1 -0
- package/esm/entries/main.d.ts +23 -0
- package/esm/entries/main.js +31 -0
- package/esm/entries/main.js.map +1 -0
- package/esm/types/index.d.ts +3 -0
- package/esm/types/index.js +2 -0
- package/esm/types/index.js.map +1 -0
- package/esm/types/profiling.d.ts +296 -0
- package/esm/types/profiling.js +5 -0
- package/esm/types/profiling.js.map +1 -0
- package/esm/types/sessionReplay.d.ts +934 -0
- package/esm/types/sessionReplay.js +5 -0
- package/esm/types/sessionReplay.js.map +1 -0
- package/esm/types/sessionReplayConstants.d.ts +71 -0
- package/esm/types/sessionReplayConstants.js +64 -0
- package/esm/types/sessionReplayConstants.js.map +1 -0
- package/internal/package.json +6 -0
- package/internal-synthetics/package.json +6 -0
- package/package.json +52 -0
- package/src/boot/isBrowserSupported.ts +14 -0
- package/src/boot/lazyLoadProfiler.ts +20 -0
- package/src/boot/lazyLoadRecorder.ts +20 -0
- package/src/boot/postStartStrategy.ts +176 -0
- package/src/boot/preStartStrategy.ts +34 -0
- package/src/boot/profilerApi.ts +82 -0
- package/src/boot/recorderApi.ts +113 -0
- package/src/boot/startRecording.ts +70 -0
- package/src/domain/deflate/deflateEncoder.ts +144 -0
- package/src/domain/deflate/deflateWorker.ts +152 -0
- package/src/domain/deflate/index.ts +9 -0
- package/src/domain/getSessionReplayLink.ts +40 -0
- package/src/domain/profiling/actionHistory.ts +65 -0
- package/src/domain/profiling/longTaskHistory.ts +40 -0
- package/src/domain/profiling/profiler.ts +366 -0
- package/src/domain/profiling/profilingContext.ts +39 -0
- package/src/domain/profiling/profilingSupported.ts +10 -0
- package/src/domain/profiling/test-utils/mockedTrace.ts +58 -0
- package/src/domain/profiling/transport/assembly.ts +63 -0
- package/src/domain/profiling/transport/buildProfileEventAttributes.ts +106 -0
- package/src/domain/profiling/types/index.ts +2 -0
- package/src/domain/profiling/types/profilerApi.types.ts +87 -0
- package/src/domain/profiling/types/rumProfiler.types.ts +62 -0
- package/src/domain/profiling/utils/getCustomOrDefaultViewName.ts +4 -0
- package/src/domain/profiling/utils/getDefaultViewName.ts +12 -0
- package/src/domain/profiling/utils/getNumberOfSamples.ts +17 -0
- package/src/domain/profiling/vitalHistory.ts +58 -0
- package/src/domain/record/assembly.ts +19 -0
- package/src/domain/record/elementsScrollPositions.ts +28 -0
- package/src/domain/record/eventsUtils.ts +12 -0
- package/src/domain/record/index.ts +12 -0
- package/src/domain/record/internalApi.ts +84 -0
- package/src/domain/record/itemIds.ts +97 -0
- package/src/domain/record/mutationBatch.ts +47 -0
- package/src/domain/record/record.ts +90 -0
- package/src/domain/record/record.types.ts +22 -0
- package/src/domain/record/recordingScope.ts +58 -0
- package/src/domain/record/serialization/changeEncoder.ts +89 -0
- package/src/domain/record/serialization/conversions/changeConverter.ts +277 -0
- package/src/domain/record/serialization/conversions/changeDecoder.ts +192 -0
- package/src/domain/record/serialization/conversions/index.ts +7 -0
- package/src/domain/record/serialization/conversions/mutationLog.ts +56 -0
- package/src/domain/record/serialization/conversions/nodeIdRemapper.ts +69 -0
- package/src/domain/record/serialization/conversions/renderOptions.ts +14 -0
- package/src/domain/record/serialization/conversions/stringTable.ts +25 -0
- package/src/domain/record/serialization/conversions/vDocument.ts +239 -0
- package/src/domain/record/serialization/conversions/vNode.ts +417 -0
- package/src/domain/record/serialization/conversions/vStyleSheet.ts +47 -0
- package/src/domain/record/serialization/experimentalFeatures.ts +15 -0
- package/src/domain/record/serialization/index.ts +21 -0
- package/src/domain/record/serialization/insertionCursor.ts +131 -0
- package/src/domain/record/serialization/serialization.types.ts +38 -0
- package/src/domain/record/serialization/serializationStats.ts +43 -0
- package/src/domain/record/serialization/serializationTransaction.ts +255 -0
- package/src/domain/record/serialization/serializationUtils.ts +103 -0
- package/src/domain/record/serialization/serializeAttribute.ts +55 -0
- package/src/domain/record/serialization/serializeAttributes.ts +194 -0
- package/src/domain/record/serialization/serializeFullSnapshot.ts +46 -0
- package/src/domain/record/serialization/serializeFullSnapshotAsChange.ts +33 -0
- package/src/domain/record/serialization/serializeMutations.ts +395 -0
- package/src/domain/record/serialization/serializeMutationsAsChange.ts +298 -0
- package/src/domain/record/serialization/serializeNode.ts +229 -0
- package/src/domain/record/serialization/serializeNodeAsChange.ts +237 -0
- package/src/domain/record/serialization/serializeStyleSheets.ts +36 -0
- package/src/domain/record/serializationVerifier.ts +208 -0
- package/src/domain/record/shadowRootsController.ts +62 -0
- package/src/domain/record/startFullSnapshots.ts +92 -0
- package/src/domain/record/trackers/index.ts +12 -0
- package/src/domain/record/trackers/trackFocus.ts +16 -0
- package/src/domain/record/trackers/trackFrustration.ts +39 -0
- package/src/domain/record/trackers/trackInput.ts +128 -0
- package/src/domain/record/trackers/trackMediaInteraction.ts +43 -0
- package/src/domain/record/trackers/trackMouseInteraction.ts +74 -0
- package/src/domain/record/trackers/trackMove.ts +78 -0
- package/src/domain/record/trackers/trackMutation.ts +74 -0
- package/src/domain/record/trackers/trackScroll.ts +61 -0
- package/src/domain/record/trackers/trackStyleSheet.ts +117 -0
- package/src/domain/record/trackers/trackViewEnd.ts +27 -0
- package/src/domain/record/trackers/trackViewportResize.ts +69 -0
- package/src/domain/record/trackers/tracker.types.ts +3 -0
- package/src/domain/record/viewports.ts +68 -0
- package/src/domain/replayStats.ts +61 -0
- package/src/domain/scriptLoadingError.ts +36 -0
- package/src/domain/segmentCollection/buildReplayPayload.ts +52 -0
- package/src/domain/segmentCollection/index.ts +4 -0
- package/src/domain/segmentCollection/segment.ts +79 -0
- package/src/domain/segmentCollection/segmentCollection.ts +200 -0
- package/src/domain/segmentCollection/startSegmentTelemetry.ts +91 -0
- package/src/domain/startRecordBridge.ts +17 -0
- package/src/domain/startRecorderInitTelemetry.ts +90 -0
- package/src/entries/internal.ts +18 -0
- package/src/entries/internalSynthetics.ts +24 -0
- package/src/entries/main.ts +96 -0
- package/src/types/index.ts +3 -0
- package/src/types/profiling.ts +298 -0
- package/src/types/sessionReplay.ts +990 -0
- package/src/types/sessionReplayConstants.ts +130 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sessionReplay.js","sourceRoot":"","sources":["../../src/types/sessionReplay.ts"],"names":[],"mappings":"AAAA;;GAEG"}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import type * as SessionReplay from './sessionReplay';
|
|
2
|
+
export declare const RecordType: {
|
|
3
|
+
FullSnapshot: SessionReplay.BrowserFullSnapshotRecord['type'];
|
|
4
|
+
IncrementalSnapshot: SessionReplay.BrowserIncrementalSnapshotRecord['type'];
|
|
5
|
+
Meta: SessionReplay.MetaRecord['type'];
|
|
6
|
+
Focus: SessionReplay.FocusRecord['type'];
|
|
7
|
+
ViewEnd: SessionReplay.ViewEndRecord['type'];
|
|
8
|
+
VisualViewport: SessionReplay.VisualViewportRecord['type'];
|
|
9
|
+
FrustrationRecord: SessionReplay.FrustrationRecord['type'];
|
|
10
|
+
Change: SessionReplay.BrowserChangeRecord['type'];
|
|
11
|
+
};
|
|
12
|
+
export type RecordType = (typeof RecordType)[keyof typeof RecordType];
|
|
13
|
+
export declare const NodeType: {
|
|
14
|
+
Document: SessionReplay.DocumentNode['type'];
|
|
15
|
+
DocumentType: SessionReplay.DocumentTypeNode['type'];
|
|
16
|
+
Element: SessionReplay.ElementNode['type'];
|
|
17
|
+
Text: SessionReplay.TextNode['type'];
|
|
18
|
+
CDATA: SessionReplay.CDataNode['type'];
|
|
19
|
+
DocumentFragment: SessionReplay.DocumentFragmentNode['type'];
|
|
20
|
+
};
|
|
21
|
+
export type NodeType = (typeof NodeType)[keyof typeof NodeType];
|
|
22
|
+
type ChangeTypeId<Id, Data> = [Id, ...Data[]] extends SessionReplay.Change ? Id : never;
|
|
23
|
+
export declare const ChangeType: {
|
|
24
|
+
AddString: ChangeTypeId<0, SessionReplay.AddStringChange>;
|
|
25
|
+
AddNode: ChangeTypeId<1, SessionReplay.AddNodeChange>;
|
|
26
|
+
RemoveNode: ChangeTypeId<2, SessionReplay.RemoveNodeChange>;
|
|
27
|
+
Attribute: ChangeTypeId<3, SessionReplay.AttributeChange>;
|
|
28
|
+
Text: ChangeTypeId<4, SessionReplay.TextChange>;
|
|
29
|
+
Size: ChangeTypeId<5, SessionReplay.SizeChange>;
|
|
30
|
+
ScrollPosition: ChangeTypeId<6, SessionReplay.ScrollPositionChange>;
|
|
31
|
+
AddStyleSheet: ChangeTypeId<7, SessionReplay.AddStyleSheetChange>;
|
|
32
|
+
AttachedStyleSheets: ChangeTypeId<8, SessionReplay.AttachedStyleSheetsChange>;
|
|
33
|
+
MediaPlaybackState: ChangeTypeId<9, SessionReplay.MediaPlaybackStateChange>;
|
|
34
|
+
VisualViewport: ChangeTypeId<10, SessionReplay.VisualViewportChange>;
|
|
35
|
+
};
|
|
36
|
+
export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
|
|
37
|
+
export declare const PlaybackState: {
|
|
38
|
+
Playing: SessionReplay.PlaybackStatePlaying;
|
|
39
|
+
Paused: SessionReplay.PlaybackStatePaused;
|
|
40
|
+
};
|
|
41
|
+
export type PlaybackState = (typeof PlaybackState)[keyof typeof PlaybackState];
|
|
42
|
+
export declare const IncrementalSource: {
|
|
43
|
+
Mutation: SessionReplay.BrowserMutationData['source'];
|
|
44
|
+
MouseMove: Exclude<SessionReplay.MousemoveData['source'], 6>;
|
|
45
|
+
MouseInteraction: SessionReplay.MouseInteractionData['source'];
|
|
46
|
+
Scroll: SessionReplay.ScrollData['source'];
|
|
47
|
+
ViewportResize: SessionReplay.ViewportResizeData['source'];
|
|
48
|
+
Input: SessionReplay.InputData['source'];
|
|
49
|
+
TouchMove: Exclude<SessionReplay.MousemoveData['source'], 1>;
|
|
50
|
+
MediaInteraction: SessionReplay.MediaInteractionData['source'];
|
|
51
|
+
StyleSheetRule: SessionReplay.StyleSheetRuleData['source'];
|
|
52
|
+
};
|
|
53
|
+
export type IncrementalSource = (typeof IncrementalSource)[keyof typeof IncrementalSource];
|
|
54
|
+
export declare const MouseInteractionType: {
|
|
55
|
+
readonly MouseUp: 0;
|
|
56
|
+
readonly MouseDown: 1;
|
|
57
|
+
readonly Click: 2;
|
|
58
|
+
readonly ContextMenu: 3;
|
|
59
|
+
readonly DblClick: 4;
|
|
60
|
+
readonly Focus: 5;
|
|
61
|
+
readonly Blur: 6;
|
|
62
|
+
readonly TouchStart: 7;
|
|
63
|
+
readonly TouchEnd: 9;
|
|
64
|
+
};
|
|
65
|
+
export type MouseInteractionType = (typeof MouseInteractionType)[keyof typeof MouseInteractionType];
|
|
66
|
+
export declare const MediaInteractionType: {
|
|
67
|
+
readonly Play: 0;
|
|
68
|
+
readonly Pause: 1;
|
|
69
|
+
};
|
|
70
|
+
export type MediaInteractionType = (typeof MediaInteractionType)[keyof typeof MediaInteractionType];
|
|
71
|
+
export {};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
export const RecordType = {
|
|
2
|
+
FullSnapshot: 2,
|
|
3
|
+
IncrementalSnapshot: 3,
|
|
4
|
+
Meta: 4,
|
|
5
|
+
Focus: 6,
|
|
6
|
+
ViewEnd: 7,
|
|
7
|
+
VisualViewport: 8,
|
|
8
|
+
FrustrationRecord: 9,
|
|
9
|
+
Change: 12,
|
|
10
|
+
};
|
|
11
|
+
export const NodeType = {
|
|
12
|
+
Document: 0,
|
|
13
|
+
DocumentType: 1,
|
|
14
|
+
Element: 2,
|
|
15
|
+
Text: 3,
|
|
16
|
+
CDATA: 4,
|
|
17
|
+
DocumentFragment: 11,
|
|
18
|
+
};
|
|
19
|
+
export const ChangeType = {
|
|
20
|
+
AddString: 0,
|
|
21
|
+
AddNode: 1,
|
|
22
|
+
RemoveNode: 2,
|
|
23
|
+
Attribute: 3,
|
|
24
|
+
Text: 4,
|
|
25
|
+
Size: 5,
|
|
26
|
+
ScrollPosition: 6,
|
|
27
|
+
AddStyleSheet: 7,
|
|
28
|
+
AttachedStyleSheets: 8,
|
|
29
|
+
MediaPlaybackState: 9,
|
|
30
|
+
VisualViewport: 10,
|
|
31
|
+
};
|
|
32
|
+
export const PlaybackState = {
|
|
33
|
+
Playing: 0,
|
|
34
|
+
Paused: 1,
|
|
35
|
+
};
|
|
36
|
+
export const IncrementalSource = {
|
|
37
|
+
Mutation: 0,
|
|
38
|
+
MouseMove: 1,
|
|
39
|
+
MouseInteraction: 2,
|
|
40
|
+
Scroll: 3,
|
|
41
|
+
ViewportResize: 4,
|
|
42
|
+
Input: 5,
|
|
43
|
+
TouchMove: 6,
|
|
44
|
+
MediaInteraction: 7,
|
|
45
|
+
StyleSheetRule: 8,
|
|
46
|
+
// CanvasMutation : 9,
|
|
47
|
+
// Font : 10,
|
|
48
|
+
};
|
|
49
|
+
export const MouseInteractionType = {
|
|
50
|
+
MouseUp: 0,
|
|
51
|
+
MouseDown: 1,
|
|
52
|
+
Click: 2,
|
|
53
|
+
ContextMenu: 3,
|
|
54
|
+
DblClick: 4,
|
|
55
|
+
Focus: 5,
|
|
56
|
+
Blur: 6,
|
|
57
|
+
TouchStart: 7,
|
|
58
|
+
TouchEnd: 9,
|
|
59
|
+
};
|
|
60
|
+
export const MediaInteractionType = {
|
|
61
|
+
Play: 0,
|
|
62
|
+
Pause: 1,
|
|
63
|
+
};
|
|
64
|
+
//# sourceMappingURL=sessionReplayConstants.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sessionReplayConstants.js","sourceRoot":"","sources":["../../src/types/sessionReplayConstants.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,UAAU,GASnB;IACF,YAAY,EAAE,CAAC;IACf,mBAAmB,EAAE,CAAC;IACtB,IAAI,EAAE,CAAC;IACP,KAAK,EAAE,CAAC;IACR,OAAO,EAAE,CAAC;IACV,cAAc,EAAE,CAAC;IACjB,iBAAiB,EAAE,CAAC;IACpB,MAAM,EAAE,EAAE;CACF,CAAA;AAIV,MAAM,CAAC,MAAM,QAAQ,GAOjB;IACF,QAAQ,EAAE,CAAC;IACX,YAAY,EAAE,CAAC;IACf,OAAO,EAAE,CAAC;IACV,IAAI,EAAE,CAAC;IACP,KAAK,EAAE,CAAC;IACR,gBAAgB,EAAE,EAAE;CACZ,CAAA;AAQV,MAAM,CAAC,MAAM,UAAU,GAYnB;IACF,SAAS,EAAE,CAAC;IACZ,OAAO,EAAE,CAAC;IACV,UAAU,EAAE,CAAC;IACb,SAAS,EAAE,CAAC;IACZ,IAAI,EAAE,CAAC;IACP,IAAI,EAAE,CAAC;IACP,cAAc,EAAE,CAAC;IACjB,aAAa,EAAE,CAAC;IAChB,mBAAmB,EAAE,CAAC;IACtB,kBAAkB,EAAE,CAAC;IACrB,cAAc,EAAE,EAAE;CACV,CAAA;AAIV,MAAM,CAAC,MAAM,aAAa,GAGtB;IACF,OAAO,EAAE,CAAC;IACV,MAAM,EAAE,CAAC;CACD,CAAA;AAIV,MAAM,CAAC,MAAM,iBAAiB,GAU1B;IACF,QAAQ,EAAE,CAAC;IACX,SAAS,EAAE,CAAC;IACZ,gBAAgB,EAAE,CAAC;IACnB,MAAM,EAAE,CAAC;IACT,cAAc,EAAE,CAAC;IACjB,KAAK,EAAE,CAAC;IACR,SAAS,EAAE,CAAC;IACZ,gBAAgB,EAAE,CAAC;IACnB,cAAc,EAAE,CAAC;IACjB,sBAAsB;IACtB,aAAa;CACL,CAAA;AAIV,MAAM,CAAC,MAAM,oBAAoB,GAAG;IAClC,OAAO,EAAE,CAAC;IACV,SAAS,EAAE,CAAC;IACZ,KAAK,EAAE,CAAC;IACR,WAAW,EAAE,CAAC;IACd,QAAQ,EAAE,CAAC;IACX,KAAK,EAAE,CAAC;IACR,IAAI,EAAE,CAAC;IACP,UAAU,EAAE,CAAC;IACb,QAAQ,EAAE,CAAC;CACH,CAAA;AAIV,MAAM,CAAC,MAAM,oBAAoB,GAAG;IAClC,IAAI,EAAE,CAAC;IACP,KAAK,EAAE,CAAC;CACA,CAAA"}
|
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@depup/datadog__browser-rum",
|
|
3
|
+
"version": "6.31.0-depup.0",
|
|
4
|
+
"license": "Apache-2.0",
|
|
5
|
+
"main": "cjs/entries/main.js",
|
|
6
|
+
"module": "esm/entries/main.js",
|
|
7
|
+
"types": "cjs/entries/main.d.ts",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "node ../../scripts/build/build-package.ts --modules --bundle datadog-rum.js",
|
|
10
|
+
"build:bundle": "node ../../scripts/build/build-package.ts --bundle datadog-rum.js"
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"@datadog/browser-core": "6.31.0",
|
|
14
|
+
"@datadog/browser-rum-core": "6.31.0"
|
|
15
|
+
},
|
|
16
|
+
"peerDependencies": {
|
|
17
|
+
"@datadog/browser-logs": "6.31.0"
|
|
18
|
+
},
|
|
19
|
+
"peerDependenciesMeta": {
|
|
20
|
+
"@datadog/browser-logs": {
|
|
21
|
+
"optional": true
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "https://github.com/DataDog/browser-sdk.git",
|
|
27
|
+
"directory": "packages/rum"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@types/pako": "2.0.4",
|
|
31
|
+
"pako": "2.1.0"
|
|
32
|
+
},
|
|
33
|
+
"volta": {
|
|
34
|
+
"extends": "../../package.json"
|
|
35
|
+
},
|
|
36
|
+
"gitHead": "5b2bc1d189c0533495cdb97c132ce7b34d2f9db6",
|
|
37
|
+
"description": "[DepUp] Dependency-bumped version of @datadog/browser-rum",
|
|
38
|
+
"keywords": [
|
|
39
|
+
"depup",
|
|
40
|
+
"dependency-bumped",
|
|
41
|
+
"updated-deps",
|
|
42
|
+
"@datadog/browser-rum"
|
|
43
|
+
],
|
|
44
|
+
"depup": {
|
|
45
|
+
"changes": {},
|
|
46
|
+
"depsUpdated": 0,
|
|
47
|
+
"originalPackage": "@datadog/browser-rum",
|
|
48
|
+
"originalVersion": "6.31.0",
|
|
49
|
+
"processedAt": "2026-03-17T16:31:01.262Z",
|
|
50
|
+
"smokeTest": "passed"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Test for Browser features used while recording
|
|
3
|
+
*/
|
|
4
|
+
export function isBrowserSupported() {
|
|
5
|
+
return (
|
|
6
|
+
// Array.from is a bit less supported by browsers than CSSSupportsRule, but has higher chances
|
|
7
|
+
// to be polyfilled. Test for both to be more confident. We could add more things if we find out
|
|
8
|
+
// this test is not sufficient.
|
|
9
|
+
typeof Array.from === 'function' &&
|
|
10
|
+
typeof CSSSupportsRule === 'function' &&
|
|
11
|
+
typeof URL.createObjectURL === 'function' &&
|
|
12
|
+
'forEach' in NodeList.prototype
|
|
13
|
+
)
|
|
14
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { mockable } from '@datadog/browser-core'
|
|
2
|
+
import { reportScriptLoadingError } from '../domain/scriptLoadingError'
|
|
3
|
+
import type { createRumProfiler } from '../domain/profiling/profiler'
|
|
4
|
+
|
|
5
|
+
export async function lazyLoadProfiler(): Promise<typeof createRumProfiler | undefined> {
|
|
6
|
+
try {
|
|
7
|
+
return await mockable(importProfiler)()
|
|
8
|
+
} catch (error: unknown) {
|
|
9
|
+
reportScriptLoadingError({
|
|
10
|
+
error,
|
|
11
|
+
source: 'Profiler',
|
|
12
|
+
scriptType: 'module',
|
|
13
|
+
})
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export async function importProfiler() {
|
|
18
|
+
const module = await import(/* webpackChunkName: "profiler" */ '../domain/profiling/profiler')
|
|
19
|
+
return module.createRumProfiler
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { mockable } from '@datadog/browser-core'
|
|
2
|
+
import { reportScriptLoadingError } from '../domain/scriptLoadingError'
|
|
3
|
+
import type { startRecording } from './startRecording'
|
|
4
|
+
|
|
5
|
+
export async function lazyLoadRecorder(): Promise<typeof startRecording | undefined> {
|
|
6
|
+
try {
|
|
7
|
+
return await mockable(importRecorder)()
|
|
8
|
+
} catch (error: unknown) {
|
|
9
|
+
reportScriptLoadingError({
|
|
10
|
+
error,
|
|
11
|
+
source: 'Recorder',
|
|
12
|
+
scriptType: 'module',
|
|
13
|
+
})
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export async function importRecorder() {
|
|
18
|
+
const module = await import(/* webpackChunkName: "recorder" */ './startRecording')
|
|
19
|
+
return module.startRecording
|
|
20
|
+
}
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
LifeCycle,
|
|
3
|
+
RumConfiguration,
|
|
4
|
+
RumSessionManager,
|
|
5
|
+
StartRecordingOptions,
|
|
6
|
+
ViewHistory,
|
|
7
|
+
RumSession,
|
|
8
|
+
} from '@datadog/browser-rum-core'
|
|
9
|
+
import { LifeCycleEventType, SessionReplayState } from '@datadog/browser-rum-core'
|
|
10
|
+
import type { Telemetry, DeflateEncoder } from '@datadog/browser-core'
|
|
11
|
+
import { asyncRunOnReadyState, monitorError, Observable } from '@datadog/browser-core'
|
|
12
|
+
import { getSessionReplayLink } from '../domain/getSessionReplayLink'
|
|
13
|
+
import { startRecorderInitTelemetry } from '../domain/startRecorderInitTelemetry'
|
|
14
|
+
import type { startRecording } from './startRecording'
|
|
15
|
+
|
|
16
|
+
export type StartRecording = typeof startRecording
|
|
17
|
+
|
|
18
|
+
export const enum RecorderStatus {
|
|
19
|
+
// The recorder is stopped.
|
|
20
|
+
Stopped,
|
|
21
|
+
// The user started the recording while it wasn't possible yet. The recorder should start as soon
|
|
22
|
+
// as possible.
|
|
23
|
+
IntentToStart,
|
|
24
|
+
// The recorder is starting. It does not record anything yet.
|
|
25
|
+
Starting,
|
|
26
|
+
// The recorder is started, it records the session.
|
|
27
|
+
Started,
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export type RecorderInitEvent =
|
|
31
|
+
| { type: 'start'; forced: boolean }
|
|
32
|
+
| { type: 'document-ready' }
|
|
33
|
+
| { type: 'recorder-settled' }
|
|
34
|
+
| { type: 'aborted' }
|
|
35
|
+
| { type: 'deflate-encoder-load-failed' }
|
|
36
|
+
| { type: 'recorder-load-failed' }
|
|
37
|
+
| { type: 'succeeded' }
|
|
38
|
+
|
|
39
|
+
export interface Strategy {
|
|
40
|
+
start: (options?: StartRecordingOptions) => void
|
|
41
|
+
stop: () => void
|
|
42
|
+
isRecording: () => boolean
|
|
43
|
+
getSessionReplayLink: () => string | undefined
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export function createPostStartStrategy(
|
|
47
|
+
configuration: RumConfiguration,
|
|
48
|
+
lifeCycle: LifeCycle,
|
|
49
|
+
sessionManager: RumSessionManager,
|
|
50
|
+
viewHistory: ViewHistory,
|
|
51
|
+
loadRecorder: () => Promise<StartRecording | undefined>,
|
|
52
|
+
getOrCreateDeflateEncoder: () => DeflateEncoder | undefined,
|
|
53
|
+
telemetry: Telemetry
|
|
54
|
+
): Strategy {
|
|
55
|
+
let status = RecorderStatus.Stopped
|
|
56
|
+
let stopRecording: () => void
|
|
57
|
+
|
|
58
|
+
lifeCycle.subscribe(LifeCycleEventType.SESSION_EXPIRED, () => {
|
|
59
|
+
if (status === RecorderStatus.Starting || status === RecorderStatus.Started) {
|
|
60
|
+
stop()
|
|
61
|
+
status = RecorderStatus.IntentToStart
|
|
62
|
+
}
|
|
63
|
+
})
|
|
64
|
+
|
|
65
|
+
lifeCycle.subscribe(LifeCycleEventType.SESSION_RENEWED, () => {
|
|
66
|
+
if (status === RecorderStatus.IntentToStart) {
|
|
67
|
+
start()
|
|
68
|
+
}
|
|
69
|
+
})
|
|
70
|
+
|
|
71
|
+
const observable = new Observable<RecorderInitEvent>()
|
|
72
|
+
startRecorderInitTelemetry(telemetry, observable)
|
|
73
|
+
|
|
74
|
+
const doStart = async (forced: boolean) => {
|
|
75
|
+
observable.notify({ type: 'start', forced })
|
|
76
|
+
|
|
77
|
+
const [startRecordingImpl] = await Promise.all([
|
|
78
|
+
notifyWhenSettled(observable, { type: 'recorder-settled' }, loadRecorder()),
|
|
79
|
+
notifyWhenSettled(observable, { type: 'document-ready' }, asyncRunOnReadyState(configuration, 'interactive')),
|
|
80
|
+
])
|
|
81
|
+
|
|
82
|
+
if (status !== RecorderStatus.Starting) {
|
|
83
|
+
observable.notify({ type: 'aborted' })
|
|
84
|
+
return
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
if (!startRecordingImpl) {
|
|
88
|
+
status = RecorderStatus.Stopped
|
|
89
|
+
observable.notify({ type: 'recorder-load-failed' })
|
|
90
|
+
return
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
const deflateEncoder = getOrCreateDeflateEncoder()
|
|
94
|
+
if (!deflateEncoder) {
|
|
95
|
+
status = RecorderStatus.Stopped
|
|
96
|
+
observable.notify({ type: 'deflate-encoder-load-failed' })
|
|
97
|
+
return
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
;({ stop: stopRecording } = startRecordingImpl(
|
|
101
|
+
lifeCycle,
|
|
102
|
+
configuration,
|
|
103
|
+
sessionManager,
|
|
104
|
+
viewHistory,
|
|
105
|
+
deflateEncoder,
|
|
106
|
+
telemetry
|
|
107
|
+
))
|
|
108
|
+
|
|
109
|
+
status = RecorderStatus.Started
|
|
110
|
+
observable.notify({ type: 'succeeded' })
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
function start(options?: StartRecordingOptions) {
|
|
114
|
+
const session = sessionManager.findTrackedSession()
|
|
115
|
+
if (canStartRecording(session, options)) {
|
|
116
|
+
status = RecorderStatus.IntentToStart
|
|
117
|
+
return
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
if (isRecordingInProgress(status)) {
|
|
121
|
+
return
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
status = RecorderStatus.Starting
|
|
125
|
+
|
|
126
|
+
const forced = shouldForceReplay(session!, options) || false
|
|
127
|
+
|
|
128
|
+
// Intentionally not awaiting doStart() to keep it asynchronous
|
|
129
|
+
doStart(forced).catch(monitorError)
|
|
130
|
+
|
|
131
|
+
if (forced) {
|
|
132
|
+
sessionManager.setForcedReplay()
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
function stop() {
|
|
137
|
+
if (status === RecorderStatus.Started) {
|
|
138
|
+
stopRecording?.()
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
status = RecorderStatus.Stopped
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
return {
|
|
145
|
+
start,
|
|
146
|
+
stop,
|
|
147
|
+
getSessionReplayLink() {
|
|
148
|
+
return getSessionReplayLink(configuration, sessionManager, viewHistory, status !== RecorderStatus.Stopped)
|
|
149
|
+
},
|
|
150
|
+
isRecording: () => status === RecorderStatus.Started,
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
function canStartRecording(session: RumSession | undefined, options?: StartRecordingOptions) {
|
|
155
|
+
return !session || (session.sessionReplay === SessionReplayState.OFF && (!options || !options.force))
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
function isRecordingInProgress(status: RecorderStatus) {
|
|
159
|
+
return status === RecorderStatus.Starting || status === RecorderStatus.Started
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
function shouldForceReplay(session: RumSession, options?: StartRecordingOptions) {
|
|
163
|
+
return options && options.force && session.sessionReplay === SessionReplayState.OFF
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
async function notifyWhenSettled<Event, Result>(
|
|
167
|
+
observable: Observable<Event>,
|
|
168
|
+
event: Event,
|
|
169
|
+
promise: Promise<Result>
|
|
170
|
+
): Promise<Result> {
|
|
171
|
+
try {
|
|
172
|
+
return await promise
|
|
173
|
+
} finally {
|
|
174
|
+
observable.notify(event)
|
|
175
|
+
}
|
|
176
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { noop } from '@datadog/browser-core'
|
|
2
|
+
import type { RumConfiguration } from '@datadog/browser-rum-core'
|
|
3
|
+
import type { Strategy } from './postStartStrategy'
|
|
4
|
+
|
|
5
|
+
const enum PreStartRecorderStatus {
|
|
6
|
+
None,
|
|
7
|
+
HadManualStart,
|
|
8
|
+
HadManualStop,
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export function createPreStartStrategy(): {
|
|
12
|
+
strategy: Strategy
|
|
13
|
+
shouldStartImmediately: (configuration: RumConfiguration) => boolean
|
|
14
|
+
} {
|
|
15
|
+
let status = PreStartRecorderStatus.None
|
|
16
|
+
return {
|
|
17
|
+
strategy: {
|
|
18
|
+
start() {
|
|
19
|
+
status = PreStartRecorderStatus.HadManualStart
|
|
20
|
+
},
|
|
21
|
+
stop() {
|
|
22
|
+
status = PreStartRecorderStatus.HadManualStop
|
|
23
|
+
},
|
|
24
|
+
isRecording: () => false,
|
|
25
|
+
getSessionReplayLink: noop as () => string | undefined,
|
|
26
|
+
},
|
|
27
|
+
shouldStartImmediately(configuration) {
|
|
28
|
+
return (
|
|
29
|
+
status === PreStartRecorderStatus.HadManualStart ||
|
|
30
|
+
(status === PreStartRecorderStatus.None && !configuration.startSessionReplayRecordingManually)
|
|
31
|
+
)
|
|
32
|
+
},
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
LifeCycle,
|
|
3
|
+
ViewHistory,
|
|
4
|
+
RumSessionManager,
|
|
5
|
+
RumConfiguration,
|
|
6
|
+
ProfilerApi,
|
|
7
|
+
Hooks,
|
|
8
|
+
} from '@datadog/browser-rum-core'
|
|
9
|
+
import type { DeflateEncoderStreamId, Encoder } from '@datadog/browser-core'
|
|
10
|
+
import { isSampled } from '@datadog/browser-rum-core'
|
|
11
|
+
import { monitorError } from '@datadog/browser-core'
|
|
12
|
+
import type { RUMProfiler } from '../domain/profiling/types'
|
|
13
|
+
import { isProfilingSupported } from '../domain/profiling/profilingSupported'
|
|
14
|
+
import { startProfilingContext } from '../domain/profiling/profilingContext'
|
|
15
|
+
import { lazyLoadProfiler } from './lazyLoadProfiler'
|
|
16
|
+
|
|
17
|
+
export function makeProfilerApi(): ProfilerApi {
|
|
18
|
+
let profiler: RUMProfiler | undefined
|
|
19
|
+
|
|
20
|
+
function onRumStart(
|
|
21
|
+
lifeCycle: LifeCycle,
|
|
22
|
+
hooks: Hooks,
|
|
23
|
+
configuration: RumConfiguration,
|
|
24
|
+
sessionManager: RumSessionManager,
|
|
25
|
+
viewHistory: ViewHistory,
|
|
26
|
+
createEncoder: (streamId: DeflateEncoderStreamId) => Encoder
|
|
27
|
+
) {
|
|
28
|
+
const session = sessionManager.findTrackedSession() // Check if the session is tracked.
|
|
29
|
+
|
|
30
|
+
if (!session) {
|
|
31
|
+
// No session tracked, no profiling.
|
|
32
|
+
// Note: No Profiling context is set at this stage.
|
|
33
|
+
return
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
// Sampling (sticky sampling based on session id)
|
|
37
|
+
if (!isSampled(session.id, configuration.profilingSampleRate)) {
|
|
38
|
+
// No sampling, no profiling.
|
|
39
|
+
// Note: No Profiling context is set at this stage.
|
|
40
|
+
return
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
// Listen to events and add the profiling context to them.
|
|
44
|
+
const profilingContextManager = startProfilingContext(hooks)
|
|
45
|
+
|
|
46
|
+
// Browser support check
|
|
47
|
+
if (!isProfilingSupported()) {
|
|
48
|
+
profilingContextManager.set({
|
|
49
|
+
status: 'error',
|
|
50
|
+
error_reason: 'not-supported-by-browser',
|
|
51
|
+
})
|
|
52
|
+
return
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
lazyLoadProfiler()
|
|
56
|
+
.then((createRumProfiler) => {
|
|
57
|
+
if (!createRumProfiler) {
|
|
58
|
+
profilingContextManager.set({ status: 'error', error_reason: 'failed-to-lazy-load' })
|
|
59
|
+
return
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
profiler = createRumProfiler(
|
|
63
|
+
configuration,
|
|
64
|
+
lifeCycle,
|
|
65
|
+
sessionManager,
|
|
66
|
+
profilingContextManager,
|
|
67
|
+
createEncoder,
|
|
68
|
+
viewHistory,
|
|
69
|
+
undefined
|
|
70
|
+
)
|
|
71
|
+
profiler.start()
|
|
72
|
+
})
|
|
73
|
+
.catch(monitorError)
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
return {
|
|
77
|
+
onRumStart,
|
|
78
|
+
stop: () => {
|
|
79
|
+
profiler?.stop()
|
|
80
|
+
},
|
|
81
|
+
}
|
|
82
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import type { DeflateEncoder, DeflateWorker, Telemetry } from '@datadog/browser-core'
|
|
2
|
+
import {
|
|
3
|
+
canUseEventBridge,
|
|
4
|
+
noop,
|
|
5
|
+
BridgeCapability,
|
|
6
|
+
bridgeSupports,
|
|
7
|
+
DeflateEncoderStreamId,
|
|
8
|
+
} from '@datadog/browser-core'
|
|
9
|
+
import type {
|
|
10
|
+
LifeCycle,
|
|
11
|
+
ViewHistory,
|
|
12
|
+
RumSessionManager,
|
|
13
|
+
RecorderApi,
|
|
14
|
+
RumConfiguration,
|
|
15
|
+
StartRecordingOptions,
|
|
16
|
+
} from '@datadog/browser-rum-core'
|
|
17
|
+
import { getReplayStats as getReplayStatsImpl } from '../domain/replayStats'
|
|
18
|
+
import {
|
|
19
|
+
createDeflateEncoder,
|
|
20
|
+
DeflateWorkerStatus,
|
|
21
|
+
getDeflateWorkerStatus,
|
|
22
|
+
startDeflateWorker,
|
|
23
|
+
} from '../domain/deflate'
|
|
24
|
+
import { isBrowserSupported } from './isBrowserSupported'
|
|
25
|
+
import type { StartRecording } from './postStartStrategy'
|
|
26
|
+
import { createPostStartStrategy } from './postStartStrategy'
|
|
27
|
+
import { createPreStartStrategy } from './preStartStrategy'
|
|
28
|
+
|
|
29
|
+
export function makeRecorderApi(loadRecorder: () => Promise<StartRecording | undefined>): RecorderApi {
|
|
30
|
+
if ((canUseEventBridge() && !bridgeSupports(BridgeCapability.RECORDS)) || !isBrowserSupported()) {
|
|
31
|
+
return {
|
|
32
|
+
start: noop,
|
|
33
|
+
stop: noop,
|
|
34
|
+
getReplayStats: () => undefined,
|
|
35
|
+
onRumStart: noop,
|
|
36
|
+
isRecording: () => false,
|
|
37
|
+
getSessionReplayLink: () => undefined,
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
// eslint-disable-next-line prefer-const
|
|
42
|
+
let { strategy, shouldStartImmediately } = createPreStartStrategy()
|
|
43
|
+
|
|
44
|
+
return {
|
|
45
|
+
start: (options?: StartRecordingOptions) => strategy.start(options),
|
|
46
|
+
stop: () => strategy.stop(),
|
|
47
|
+
getSessionReplayLink: () => strategy.getSessionReplayLink(),
|
|
48
|
+
onRumStart,
|
|
49
|
+
isRecording: () =>
|
|
50
|
+
// The worker is started optimistically, meaning we could have started to record but its
|
|
51
|
+
// initialization fails a bit later. This could happen when:
|
|
52
|
+
// * the worker URL (blob or plain URL) is blocked by CSP in Firefox only (Chromium and Safari
|
|
53
|
+
// throw an exception when instantiating the worker, and IE doesn't care about CSP)
|
|
54
|
+
// * the browser fails to load the worker in case the workerUrl is used
|
|
55
|
+
// * an unexpected error occurs in the Worker before initialization, ex:
|
|
56
|
+
// * a runtime exception collected by monitor()
|
|
57
|
+
// * a syntax error notified by the browser via an error event
|
|
58
|
+
// * the worker is unresponsive for some reason and timeouts
|
|
59
|
+
//
|
|
60
|
+
// It is not expected to happen often. Nonetheless, the "replayable" status on RUM events is
|
|
61
|
+
// an important part of the Datadog App:
|
|
62
|
+
// * If we have a false positive (we set has_replay: true even if no replay data is present),
|
|
63
|
+
// we might display broken links to the Session Replay player.
|
|
64
|
+
// * If we have a false negative (we don't set has_replay: true even if replay data is
|
|
65
|
+
// available), it is less noticeable because no link will be displayed.
|
|
66
|
+
//
|
|
67
|
+
// Thus, it is better to have false negative, so let's make sure the worker is correctly
|
|
68
|
+
// initialized before advertizing that we are recording.
|
|
69
|
+
//
|
|
70
|
+
// In the future, when the compression worker will also be used for RUM data, this will be
|
|
71
|
+
// less important since no RUM event will be sent when the worker fails to initialize.
|
|
72
|
+
getDeflateWorkerStatus() === DeflateWorkerStatus.Initialized && strategy.isRecording(),
|
|
73
|
+
|
|
74
|
+
getReplayStats: (viewId) =>
|
|
75
|
+
getDeflateWorkerStatus() === DeflateWorkerStatus.Initialized ? getReplayStatsImpl(viewId) : undefined,
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
function onRumStart(
|
|
79
|
+
lifeCycle: LifeCycle,
|
|
80
|
+
configuration: RumConfiguration,
|
|
81
|
+
sessionManager: RumSessionManager,
|
|
82
|
+
viewHistory: ViewHistory,
|
|
83
|
+
worker: DeflateWorker | undefined,
|
|
84
|
+
telemetry: Telemetry
|
|
85
|
+
) {
|
|
86
|
+
let cachedDeflateEncoder: DeflateEncoder | undefined
|
|
87
|
+
|
|
88
|
+
function getOrCreateDeflateEncoder() {
|
|
89
|
+
if (!cachedDeflateEncoder) {
|
|
90
|
+
worker ??= startDeflateWorker(configuration, 'Datadog Session Replay', () => strategy.stop())
|
|
91
|
+
|
|
92
|
+
if (worker) {
|
|
93
|
+
cachedDeflateEncoder = createDeflateEncoder(configuration, worker, DeflateEncoderStreamId.REPLAY)
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
return cachedDeflateEncoder
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
strategy = createPostStartStrategy(
|
|
100
|
+
configuration,
|
|
101
|
+
lifeCycle,
|
|
102
|
+
sessionManager,
|
|
103
|
+
viewHistory,
|
|
104
|
+
loadRecorder,
|
|
105
|
+
getOrCreateDeflateEncoder,
|
|
106
|
+
telemetry
|
|
107
|
+
)
|
|
108
|
+
|
|
109
|
+
if (shouldStartImmediately(configuration)) {
|
|
110
|
+
strategy.start()
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|