@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,69 @@
|
|
|
1
|
+
import { throttle, DOM_EVENT, addEventListeners, timeStampNow, noop } from '@datadog/browser-core'
|
|
2
|
+
import type { ViewportDimension } from '@datadog/browser-rum-core'
|
|
3
|
+
import { initViewportObservable } from '@datadog/browser-rum-core'
|
|
4
|
+
import { IncrementalSource, RecordType } from '../../../types'
|
|
5
|
+
import type { BrowserIncrementalSnapshotRecord, ViewportResizeData, VisualViewportRecord } from '../../../types'
|
|
6
|
+
import { getVisualViewport } from '../viewports'
|
|
7
|
+
import { assembleIncrementalSnapshot } from '../assembly'
|
|
8
|
+
import type { EmitRecordCallback } from '../record.types'
|
|
9
|
+
import type { RecordingScope } from '../recordingScope'
|
|
10
|
+
import type { Tracker } from './tracker.types'
|
|
11
|
+
|
|
12
|
+
const VISUAL_VIEWPORT_OBSERVER_THRESHOLD = 200
|
|
13
|
+
|
|
14
|
+
export function trackViewportResize(
|
|
15
|
+
emitRecord: EmitRecordCallback<BrowserIncrementalSnapshotRecord>,
|
|
16
|
+
scope: RecordingScope
|
|
17
|
+
): Tracker {
|
|
18
|
+
const viewportResizeSubscription = initViewportObservable(scope.configuration).subscribe(
|
|
19
|
+
(data: ViewportDimension) => {
|
|
20
|
+
emitRecord(assembleIncrementalSnapshot<ViewportResizeData>(IncrementalSource.ViewportResize, data))
|
|
21
|
+
}
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
return {
|
|
25
|
+
stop: () => {
|
|
26
|
+
viewportResizeSubscription.unsubscribe()
|
|
27
|
+
},
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export function trackVisualViewportResize(
|
|
32
|
+
emitRecord: EmitRecordCallback<VisualViewportRecord>,
|
|
33
|
+
scope: RecordingScope
|
|
34
|
+
): Tracker {
|
|
35
|
+
const visualViewport = window.visualViewport
|
|
36
|
+
if (!visualViewport) {
|
|
37
|
+
return { stop: noop }
|
|
38
|
+
}
|
|
39
|
+
const { throttled: updateDimension, cancel: cancelThrottle } = throttle(
|
|
40
|
+
() => {
|
|
41
|
+
emitRecord({
|
|
42
|
+
data: getVisualViewport(visualViewport),
|
|
43
|
+
type: RecordType.VisualViewport,
|
|
44
|
+
timestamp: timeStampNow(),
|
|
45
|
+
})
|
|
46
|
+
},
|
|
47
|
+
VISUAL_VIEWPORT_OBSERVER_THRESHOLD,
|
|
48
|
+
{
|
|
49
|
+
trailing: false,
|
|
50
|
+
}
|
|
51
|
+
)
|
|
52
|
+
const { stop: removeListener } = addEventListeners(
|
|
53
|
+
scope.configuration,
|
|
54
|
+
visualViewport,
|
|
55
|
+
[DOM_EVENT.RESIZE, DOM_EVENT.SCROLL],
|
|
56
|
+
updateDimension,
|
|
57
|
+
{
|
|
58
|
+
capture: true,
|
|
59
|
+
passive: true,
|
|
60
|
+
}
|
|
61
|
+
)
|
|
62
|
+
|
|
63
|
+
return {
|
|
64
|
+
stop: () => {
|
|
65
|
+
removeListener()
|
|
66
|
+
cancelThrottle()
|
|
67
|
+
},
|
|
68
|
+
}
|
|
69
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Browsers have not standardized various dimension properties. Mobile devices typically report
|
|
3
|
+
* dimensions in reference to the visual viewport, while desktop uses the layout viewport. For example,
|
|
4
|
+
* Mobile Chrome will change innerWidth when a pinch zoom takes place, while Chrome Desktop (mac) will not.
|
|
5
|
+
*
|
|
6
|
+
* With the new Viewport API, we now calculate and normalize dimension properties to the layout viewport.
|
|
7
|
+
* If the VisualViewport API is not supported by a browser, it isn't reasonably possible to detect or normalize
|
|
8
|
+
* which viewport is being measured. Therefore these exported functions will fallback to assuming that the layout
|
|
9
|
+
* viewport is being measured by the browser
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
import type { VisualViewportRecord } from '../../types'
|
|
13
|
+
|
|
14
|
+
// Scrollbar widths vary across properties on different devices and browsers
|
|
15
|
+
const TOLERANCE = 25
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Use the Visual Viewport API's properties to measure scrollX/Y in reference to the layout viewport
|
|
19
|
+
* in order to determine if window.scrollX/Y is measuring the layout or visual viewport.
|
|
20
|
+
* This finding corresponds to which viewport mouseEvent.clientX/Y and window.innerWidth/Height measures.
|
|
21
|
+
*/
|
|
22
|
+
function isVisualViewportFactoredIn(visualViewport: VisualViewport) {
|
|
23
|
+
return (
|
|
24
|
+
Math.abs(visualViewport.pageTop - visualViewport.offsetTop - window.scrollY) > TOLERANCE ||
|
|
25
|
+
Math.abs(visualViewport.pageLeft - visualViewport.offsetLeft - window.scrollX) > TOLERANCE
|
|
26
|
+
)
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
interface LayoutCoordinates {
|
|
30
|
+
layoutViewportX: number
|
|
31
|
+
layoutViewportY: number
|
|
32
|
+
visualViewportX: number
|
|
33
|
+
visualViewportY: number
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export const convertMouseEventToLayoutCoordinates = (clientX: number, clientY: number): LayoutCoordinates => {
|
|
37
|
+
const visualViewport = window.visualViewport
|
|
38
|
+
const normalized: LayoutCoordinates = {
|
|
39
|
+
layoutViewportX: clientX,
|
|
40
|
+
layoutViewportY: clientY,
|
|
41
|
+
visualViewportX: clientX,
|
|
42
|
+
visualViewportY: clientY,
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
if (!visualViewport) {
|
|
46
|
+
// On old browsers, we cannot normalize, so fallback to clientX/Y
|
|
47
|
+
return normalized
|
|
48
|
+
} else if (isVisualViewportFactoredIn(visualViewport)) {
|
|
49
|
+
// Typically Mobile Devices
|
|
50
|
+
normalized.layoutViewportX = Math.round(clientX + visualViewport.offsetLeft)
|
|
51
|
+
normalized.layoutViewportY = Math.round(clientY + visualViewport.offsetTop)
|
|
52
|
+
} else {
|
|
53
|
+
// Typically Desktop Devices
|
|
54
|
+
normalized.visualViewportX = Math.round(clientX - visualViewport.offsetLeft)
|
|
55
|
+
normalized.visualViewportY = Math.round(clientY - visualViewport.offsetTop)
|
|
56
|
+
}
|
|
57
|
+
return normalized
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export const getVisualViewport = (visualViewport: VisualViewport): VisualViewportRecord['data'] => ({
|
|
61
|
+
scale: visualViewport.scale,
|
|
62
|
+
offsetLeft: visualViewport.offsetLeft,
|
|
63
|
+
offsetTop: visualViewport.offsetTop,
|
|
64
|
+
pageLeft: visualViewport.pageLeft,
|
|
65
|
+
pageTop: visualViewport.pageTop,
|
|
66
|
+
height: visualViewport.height,
|
|
67
|
+
width: visualViewport.width,
|
|
68
|
+
})
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import type { ReplayStats } from '@datadog/browser-rum-core'
|
|
2
|
+
|
|
3
|
+
export const MAX_STATS_HISTORY = 1000
|
|
4
|
+
let statsPerView: Map<string, ReplayStats> | undefined
|
|
5
|
+
|
|
6
|
+
export function getSegmentsCount(viewId: string) {
|
|
7
|
+
return getOrCreateReplayStats(viewId).segments_count
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export function addSegment(viewId: string) {
|
|
11
|
+
getOrCreateReplayStats(viewId).segments_count += 1
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export function addRecord(viewId: string) {
|
|
15
|
+
getOrCreateReplayStats(viewId).records_count += 1
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export function addWroteData(viewId: string, additionalBytesCount: number) {
|
|
19
|
+
getOrCreateReplayStats(viewId).segments_total_raw_size += additionalBytesCount
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export function getReplayStats(viewId: string) {
|
|
23
|
+
return statsPerView?.get(viewId)
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export function resetReplayStats() {
|
|
27
|
+
statsPerView = undefined
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
function getOrCreateReplayStats(viewId: string) {
|
|
31
|
+
if (!statsPerView) {
|
|
32
|
+
statsPerView = new Map()
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
let replayStats: ReplayStats
|
|
36
|
+
if (statsPerView.has(viewId)) {
|
|
37
|
+
replayStats = statsPerView.get(viewId)!
|
|
38
|
+
} else {
|
|
39
|
+
replayStats = {
|
|
40
|
+
records_count: 0,
|
|
41
|
+
segments_count: 0,
|
|
42
|
+
segments_total_raw_size: 0,
|
|
43
|
+
}
|
|
44
|
+
statsPerView.set(viewId, replayStats)
|
|
45
|
+
if (statsPerView.size > MAX_STATS_HISTORY) {
|
|
46
|
+
deleteOldestStats()
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
return replayStats
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
function deleteOldestStats() {
|
|
54
|
+
if (!statsPerView) {
|
|
55
|
+
return
|
|
56
|
+
}
|
|
57
|
+
const toDelete = statsPerView.keys().next().value
|
|
58
|
+
if (toDelete) {
|
|
59
|
+
statsPerView.delete(toDelete)
|
|
60
|
+
}
|
|
61
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { addTelemetryError, display, DOCS_ORIGIN } from '@datadog/browser-core'
|
|
2
|
+
|
|
3
|
+
export function reportScriptLoadingError({
|
|
4
|
+
configuredUrl,
|
|
5
|
+
error,
|
|
6
|
+
source,
|
|
7
|
+
scriptType,
|
|
8
|
+
}: {
|
|
9
|
+
configuredUrl?: string | undefined
|
|
10
|
+
error: unknown
|
|
11
|
+
source: string
|
|
12
|
+
scriptType: 'module' | 'worker'
|
|
13
|
+
}) {
|
|
14
|
+
display.error(`${source} failed to start: an error occurred while initializing the ${scriptType}:`, error)
|
|
15
|
+
if (error instanceof Event || (error instanceof Error && isMessageCspRelated(error.message))) {
|
|
16
|
+
let baseMessage
|
|
17
|
+
if (configuredUrl) {
|
|
18
|
+
baseMessage = `Please make sure the ${scriptType} URL ${configuredUrl} is correct and CSP is correctly configured.`
|
|
19
|
+
} else {
|
|
20
|
+
baseMessage = 'Please make sure CSP is correctly configured.'
|
|
21
|
+
}
|
|
22
|
+
display.error(
|
|
23
|
+
`${baseMessage} See documentation at ${DOCS_ORIGIN}/integrations/content_security_policy_logs/#use-csp-with-real-user-monitoring-and-session-replay`
|
|
24
|
+
)
|
|
25
|
+
} else if (scriptType === 'worker') {
|
|
26
|
+
addTelemetryError(error)
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
function isMessageCspRelated(message: string) {
|
|
31
|
+
return (
|
|
32
|
+
message.includes('Content Security Policy') ||
|
|
33
|
+
// Related to `require-trusted-types-for` CSP: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/require-trusted-types-for
|
|
34
|
+
message.includes("requires 'TrustedScriptURL'")
|
|
35
|
+
)
|
|
36
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import type { Payload, Uint8ArrayBuffer } from '@datadog/browser-core'
|
|
2
|
+
import type { BrowserSegmentMetadata } from '../../types'
|
|
3
|
+
import type { SerializationMetric, SerializationStats } from '../record'
|
|
4
|
+
|
|
5
|
+
export type BrowserSegmentMetadataAndSegmentSizes = BrowserSegmentMetadata & {
|
|
6
|
+
raw_segment_size: number
|
|
7
|
+
compressed_segment_size: number
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export type ReplayPayload = Payload & {
|
|
11
|
+
cssText: SerializationMetric
|
|
12
|
+
isFullSnapshot: boolean
|
|
13
|
+
rawSize: number
|
|
14
|
+
recordCount: number
|
|
15
|
+
serializationDuration: SerializationMetric
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export function buildReplayPayload(
|
|
19
|
+
data: Uint8ArrayBuffer,
|
|
20
|
+
metadata: BrowserSegmentMetadata,
|
|
21
|
+
stats: SerializationStats,
|
|
22
|
+
rawSegmentBytesCount: number
|
|
23
|
+
): ReplayPayload {
|
|
24
|
+
const formData = new FormData()
|
|
25
|
+
|
|
26
|
+
formData.append(
|
|
27
|
+
'segment',
|
|
28
|
+
new Blob([data], {
|
|
29
|
+
type: 'application/octet-stream',
|
|
30
|
+
}),
|
|
31
|
+
`${metadata.session.id}-${metadata.start}`
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
const metadataAndSegmentSizes: BrowserSegmentMetadataAndSegmentSizes = {
|
|
35
|
+
raw_segment_size: rawSegmentBytesCount,
|
|
36
|
+
compressed_segment_size: data.byteLength,
|
|
37
|
+
...metadata,
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
const serializedMetadataAndSegmentSizes = JSON.stringify(metadataAndSegmentSizes)
|
|
41
|
+
formData.append('event', new Blob([serializedMetadataAndSegmentSizes], { type: 'application/json' }))
|
|
42
|
+
|
|
43
|
+
return {
|
|
44
|
+
data: formData,
|
|
45
|
+
bytesCount: data.byteLength,
|
|
46
|
+
cssText: stats.cssText,
|
|
47
|
+
isFullSnapshot: metadata.index_in_view === 0,
|
|
48
|
+
rawSize: rawSegmentBytesCount,
|
|
49
|
+
recordCount: metadata.records_count,
|
|
50
|
+
serializationDuration: stats.serializationDuration,
|
|
51
|
+
}
|
|
52
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { startSegmentCollection, setSegmentBytesLimit } from './segmentCollection'
|
|
2
|
+
export { SEGMENT_BYTES_LIMIT } from './segmentCollection'
|
|
3
|
+
export type { BrowserSegmentMetadataAndSegmentSizes, ReplayPayload } from './buildReplayPayload'
|
|
4
|
+
export { startSegmentTelemetry } from './startSegmentTelemetry'
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import type { Encoder, EncoderResult, Uint8ArrayBuffer } from '@datadog/browser-core'
|
|
2
|
+
import type { BrowserRecord, BrowserSegmentMetadata, CreationReason, SegmentContext } from '../../types'
|
|
3
|
+
import { RecordType } from '../../types'
|
|
4
|
+
import * as replayStats from '../replayStats'
|
|
5
|
+
import type { SerializationStats } from '../record'
|
|
6
|
+
import { aggregateSerializationStats, createSerializationStats } from '../record'
|
|
7
|
+
|
|
8
|
+
export type FlushReason = Exclude<CreationReason, 'init'> | 'stop'
|
|
9
|
+
export type FlushCallback = (
|
|
10
|
+
metadata: BrowserSegmentMetadata,
|
|
11
|
+
stats: SerializationStats,
|
|
12
|
+
encoderResult: EncoderResult<Uint8ArrayBuffer>
|
|
13
|
+
) => void
|
|
14
|
+
export type AddRecordCallback = (encodedBytesCount: number) => void
|
|
15
|
+
|
|
16
|
+
export interface Segment {
|
|
17
|
+
addRecord: (record: BrowserRecord, callback: AddRecordCallback) => void
|
|
18
|
+
addStats: (stats: SerializationStats) => void
|
|
19
|
+
flush: (callback: FlushCallback) => void
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export function createSegment({
|
|
23
|
+
context,
|
|
24
|
+
creationReason,
|
|
25
|
+
encoder,
|
|
26
|
+
}: {
|
|
27
|
+
context: SegmentContext
|
|
28
|
+
creationReason: CreationReason
|
|
29
|
+
encoder: Encoder<Uint8ArrayBuffer>
|
|
30
|
+
}): Segment {
|
|
31
|
+
let encodedBytesCount = 0
|
|
32
|
+
const viewId = context.view.id
|
|
33
|
+
const indexInView = replayStats.getSegmentsCount(viewId)
|
|
34
|
+
const metadata: BrowserSegmentMetadata = {
|
|
35
|
+
start: Infinity,
|
|
36
|
+
end: -Infinity,
|
|
37
|
+
creation_reason: creationReason,
|
|
38
|
+
records_count: 0,
|
|
39
|
+
has_full_snapshot: false,
|
|
40
|
+
index_in_view: indexInView,
|
|
41
|
+
source: 'browser' as const,
|
|
42
|
+
...context,
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
const serializationStats = createSerializationStats()
|
|
46
|
+
replayStats.addSegment(viewId)
|
|
47
|
+
|
|
48
|
+
function addRecord(record: BrowserRecord, callback: AddRecordCallback): void {
|
|
49
|
+
metadata.start = Math.min(metadata.start, record.timestamp)
|
|
50
|
+
metadata.end = Math.max(metadata.end, record.timestamp)
|
|
51
|
+
metadata.records_count += 1
|
|
52
|
+
metadata.has_full_snapshot ||=
|
|
53
|
+
record.type === RecordType.FullSnapshot || (record.type === RecordType.Change && metadata.index_in_view === 0)
|
|
54
|
+
|
|
55
|
+
const prefix = encoder.isEmpty ? '{"records":[' : ','
|
|
56
|
+
encoder.write(prefix + JSON.stringify(record), (additionalEncodedBytesCount) => {
|
|
57
|
+
encodedBytesCount += additionalEncodedBytesCount
|
|
58
|
+
callback(encodedBytesCount)
|
|
59
|
+
})
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
function addStats(stats: SerializationStats): void {
|
|
63
|
+
aggregateSerializationStats(serializationStats, stats)
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
function flush(callback: FlushCallback) {
|
|
67
|
+
if (encoder.isEmpty) {
|
|
68
|
+
throw new Error('Empty segment flushed')
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
encoder.write(`],${JSON.stringify(metadata).slice(1)}\n`)
|
|
72
|
+
encoder.finish((encoderResult) => {
|
|
73
|
+
replayStats.addWroteData(metadata.view.id, encoderResult.rawBytesCount)
|
|
74
|
+
callback(metadata, serializationStats, encoderResult)
|
|
75
|
+
})
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
return { addRecord, addStats, flush }
|
|
79
|
+
}
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
import type { DeflateEncoder, HttpRequest, TimeoutId } from '@datadog/browser-core'
|
|
2
|
+
import { isPageExitReason, ONE_SECOND, clearTimeout, setTimeout } from '@datadog/browser-core'
|
|
3
|
+
import type { LifeCycle, ViewHistory, RumSessionManager, RumConfiguration } from '@datadog/browser-rum-core'
|
|
4
|
+
import { LifeCycleEventType } from '@datadog/browser-rum-core'
|
|
5
|
+
import type { BrowserRecord, CreationReason, SegmentContext } from '../../types'
|
|
6
|
+
import type { SerializationStats } from '../record'
|
|
7
|
+
import type { ReplayPayload } from './buildReplayPayload'
|
|
8
|
+
import { buildReplayPayload } from './buildReplayPayload'
|
|
9
|
+
import type { FlushReason, Segment } from './segment'
|
|
10
|
+
import { createSegment } from './segment'
|
|
11
|
+
|
|
12
|
+
export const SEGMENT_DURATION_LIMIT = 5 * ONE_SECOND
|
|
13
|
+
/**
|
|
14
|
+
* beacon payload max queue size implementation is 64kb
|
|
15
|
+
* ensure that we leave room for logs, rum and potential other users
|
|
16
|
+
*/
|
|
17
|
+
export let SEGMENT_BYTES_LIMIT = 60_000
|
|
18
|
+
|
|
19
|
+
// Segments are the main data structure for session replays. They contain context information used
|
|
20
|
+
// for indexing or UI needs, and a list of records (RRWeb 'events', renamed to avoid confusing
|
|
21
|
+
// namings). They are stored without any processing from the intake, and fetched one after the
|
|
22
|
+
// other while a session is being replayed. Their encoding (deflate) are carefully crafted to allow
|
|
23
|
+
// concatenating multiple segments together. Segments have a size overhead (metadata), so our goal is to
|
|
24
|
+
// build segments containing as many records as possible while complying with the various flush
|
|
25
|
+
// strategies to guarantee a good replay quality.
|
|
26
|
+
//
|
|
27
|
+
// When the recording starts, a segment is initially created. The segment is flushed (finalized and
|
|
28
|
+
// sent) based on various events (non-exhaustive list):
|
|
29
|
+
//
|
|
30
|
+
// * the page visibility change or becomes to unload
|
|
31
|
+
// * the segment duration reaches a limit
|
|
32
|
+
// * the encoded segment bytes count reaches a limit
|
|
33
|
+
// * ...
|
|
34
|
+
//
|
|
35
|
+
// A segment cannot be created without its context. If the RUM session ends and no session id is
|
|
36
|
+
// available when creating a new segment, records will be ignored, until the session is renewed and
|
|
37
|
+
// a new session id is available.
|
|
38
|
+
//
|
|
39
|
+
// Empty segments (segments with no record) aren't useful and should be ignored.
|
|
40
|
+
//
|
|
41
|
+
// To help investigate session replays issues, each segment is created with a "creation reason",
|
|
42
|
+
// indicating why the session has been created.
|
|
43
|
+
|
|
44
|
+
interface SegmentCollector {
|
|
45
|
+
addRecord(this: void, record: BrowserRecord): void
|
|
46
|
+
addStats(this: void, stats: SerializationStats): void
|
|
47
|
+
stop(this: void): void
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export function startSegmentCollection(
|
|
51
|
+
lifeCycle: LifeCycle,
|
|
52
|
+
configuration: RumConfiguration,
|
|
53
|
+
sessionManager: RumSessionManager,
|
|
54
|
+
viewHistory: ViewHistory,
|
|
55
|
+
httpRequest: HttpRequest<ReplayPayload>,
|
|
56
|
+
encoder: DeflateEncoder
|
|
57
|
+
): SegmentCollector {
|
|
58
|
+
return doStartSegmentCollection(
|
|
59
|
+
lifeCycle,
|
|
60
|
+
() => computeSegmentContext(configuration.applicationId, sessionManager, viewHistory),
|
|
61
|
+
httpRequest,
|
|
62
|
+
encoder
|
|
63
|
+
)
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
const enum SegmentCollectionStatus {
|
|
67
|
+
WaitingForInitialRecord,
|
|
68
|
+
SegmentPending,
|
|
69
|
+
Stopped,
|
|
70
|
+
}
|
|
71
|
+
type SegmentCollectionState =
|
|
72
|
+
| {
|
|
73
|
+
status: SegmentCollectionStatus.WaitingForInitialRecord
|
|
74
|
+
nextSegmentCreationReason: CreationReason
|
|
75
|
+
}
|
|
76
|
+
| {
|
|
77
|
+
status: SegmentCollectionStatus.SegmentPending
|
|
78
|
+
segment: Segment
|
|
79
|
+
expirationTimeoutId: TimeoutId
|
|
80
|
+
}
|
|
81
|
+
| {
|
|
82
|
+
status: SegmentCollectionStatus.Stopped
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export function doStartSegmentCollection(
|
|
86
|
+
lifeCycle: LifeCycle,
|
|
87
|
+
getSegmentContext: () => SegmentContext | undefined,
|
|
88
|
+
httpRequest: HttpRequest<ReplayPayload>,
|
|
89
|
+
encoder: DeflateEncoder
|
|
90
|
+
): SegmentCollector {
|
|
91
|
+
let state: SegmentCollectionState = {
|
|
92
|
+
status: SegmentCollectionStatus.WaitingForInitialRecord,
|
|
93
|
+
nextSegmentCreationReason: 'init',
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
const { unsubscribe: unsubscribeViewCreated } = lifeCycle.subscribe(LifeCycleEventType.VIEW_CREATED, () => {
|
|
97
|
+
flushSegment('view_change')
|
|
98
|
+
})
|
|
99
|
+
|
|
100
|
+
const { unsubscribe: unsubscribePageMayExit } = lifeCycle.subscribe(
|
|
101
|
+
LifeCycleEventType.PAGE_MAY_EXIT,
|
|
102
|
+
(pageMayExitEvent) => {
|
|
103
|
+
flushSegment(pageMayExitEvent.reason as FlushReason)
|
|
104
|
+
}
|
|
105
|
+
)
|
|
106
|
+
|
|
107
|
+
function flushSegment(flushReason: FlushReason) {
|
|
108
|
+
if (state.status === SegmentCollectionStatus.SegmentPending) {
|
|
109
|
+
state.segment.flush((metadata, stats, encoderResult) => {
|
|
110
|
+
const payload = buildReplayPayload(encoderResult.output, metadata, stats, encoderResult.rawBytesCount)
|
|
111
|
+
|
|
112
|
+
if (isPageExitReason(flushReason)) {
|
|
113
|
+
httpRequest.sendOnExit(payload)
|
|
114
|
+
} else {
|
|
115
|
+
httpRequest.send(payload)
|
|
116
|
+
}
|
|
117
|
+
})
|
|
118
|
+
clearTimeout(state.expirationTimeoutId)
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
if (flushReason !== 'stop') {
|
|
122
|
+
state = {
|
|
123
|
+
status: SegmentCollectionStatus.WaitingForInitialRecord,
|
|
124
|
+
nextSegmentCreationReason: flushReason,
|
|
125
|
+
}
|
|
126
|
+
} else {
|
|
127
|
+
state = {
|
|
128
|
+
status: SegmentCollectionStatus.Stopped,
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
return {
|
|
134
|
+
addRecord: (record: BrowserRecord) => {
|
|
135
|
+
if (state.status === SegmentCollectionStatus.Stopped) {
|
|
136
|
+
return
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
if (state.status === SegmentCollectionStatus.WaitingForInitialRecord) {
|
|
140
|
+
const context = getSegmentContext()
|
|
141
|
+
if (!context) {
|
|
142
|
+
return
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
state = {
|
|
146
|
+
status: SegmentCollectionStatus.SegmentPending,
|
|
147
|
+
segment: createSegment({ encoder, context, creationReason: state.nextSegmentCreationReason }),
|
|
148
|
+
expirationTimeoutId: setTimeout(() => {
|
|
149
|
+
flushSegment('segment_duration_limit')
|
|
150
|
+
}, SEGMENT_DURATION_LIMIT),
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
state.segment.addRecord(record, (encodedBytesCount) => {
|
|
155
|
+
if (encodedBytesCount > SEGMENT_BYTES_LIMIT) {
|
|
156
|
+
flushSegment('segment_bytes_limit')
|
|
157
|
+
}
|
|
158
|
+
})
|
|
159
|
+
},
|
|
160
|
+
|
|
161
|
+
addStats: (stats: SerializationStats) => {
|
|
162
|
+
if (state.status === SegmentCollectionStatus.SegmentPending) {
|
|
163
|
+
state.segment.addStats(stats)
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
|
|
167
|
+
stop: () => {
|
|
168
|
+
flushSegment('stop')
|
|
169
|
+
unsubscribeViewCreated()
|
|
170
|
+
unsubscribePageMayExit()
|
|
171
|
+
},
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
export function computeSegmentContext(
|
|
176
|
+
applicationId: string,
|
|
177
|
+
sessionManager: RumSessionManager,
|
|
178
|
+
viewHistory: ViewHistory
|
|
179
|
+
) {
|
|
180
|
+
const session = sessionManager.findTrackedSession()
|
|
181
|
+
const viewContext = viewHistory.findView()
|
|
182
|
+
if (!session || !viewContext) {
|
|
183
|
+
return undefined
|
|
184
|
+
}
|
|
185
|
+
return {
|
|
186
|
+
application: {
|
|
187
|
+
id: applicationId,
|
|
188
|
+
},
|
|
189
|
+
session: {
|
|
190
|
+
id: session.id,
|
|
191
|
+
},
|
|
192
|
+
view: {
|
|
193
|
+
id: viewContext.id,
|
|
194
|
+
},
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
export function setSegmentBytesLimit(newSegmentBytesLimit = 60_000) {
|
|
199
|
+
SEGMENT_BYTES_LIMIT = newSegmentBytesLimit
|
|
200
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import type { BandwidthStats, Context, HttpRequestEvent, Observable, Telemetry } from '@datadog/browser-core'
|
|
2
|
+
import { TelemetryMetrics, addTelemetryMetrics, noop } from '@datadog/browser-core'
|
|
3
|
+
import { isFullSnapshotChangeRecordsEnabled, isIncrementalSnapshotChangeRecordsEnabled } from '../record'
|
|
4
|
+
import type { ReplayPayload } from './buildReplayPayload'
|
|
5
|
+
|
|
6
|
+
interface SegmentMetrics extends Context {
|
|
7
|
+
cssText: {
|
|
8
|
+
count: number
|
|
9
|
+
max: number
|
|
10
|
+
sum: number
|
|
11
|
+
}
|
|
12
|
+
encoding: {
|
|
13
|
+
fullSnapshot: 'v1' | 'change'
|
|
14
|
+
incrementalSnapshot: 'v1' | 'change'
|
|
15
|
+
}
|
|
16
|
+
isFullSnapshot: boolean
|
|
17
|
+
ongoingRequests: {
|
|
18
|
+
count: number
|
|
19
|
+
totalSize: number
|
|
20
|
+
}
|
|
21
|
+
recordCount: number
|
|
22
|
+
result: 'failure' | 'queue-full' | 'success'
|
|
23
|
+
serializationDuration: {
|
|
24
|
+
count: number
|
|
25
|
+
max: number
|
|
26
|
+
sum: number
|
|
27
|
+
}
|
|
28
|
+
size: {
|
|
29
|
+
compressed: number
|
|
30
|
+
raw: number
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export function startSegmentTelemetry(
|
|
35
|
+
telemetry: Telemetry,
|
|
36
|
+
requestObservable: Observable<HttpRequestEvent<ReplayPayload>>
|
|
37
|
+
) {
|
|
38
|
+
if (!telemetry.metricsEnabled) {
|
|
39
|
+
return { stop: noop }
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
const { unsubscribe } = requestObservable.subscribe((requestEvent) => {
|
|
43
|
+
if (
|
|
44
|
+
requestEvent.type === 'failure' ||
|
|
45
|
+
requestEvent.type === 'queue-full' ||
|
|
46
|
+
(requestEvent.type === 'success' && requestEvent.payload.isFullSnapshot)
|
|
47
|
+
) {
|
|
48
|
+
const metrics = createSegmentMetrics(requestEvent.type, requestEvent.bandwidth, requestEvent.payload)
|
|
49
|
+
// monitor-until: 2026-07-01
|
|
50
|
+
addTelemetryMetrics(TelemetryMetrics.SEGMENT_METRICS_TELEMETRY_NAME, { metrics })
|
|
51
|
+
}
|
|
52
|
+
})
|
|
53
|
+
|
|
54
|
+
return {
|
|
55
|
+
stop: unsubscribe,
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
function createSegmentMetrics(
|
|
60
|
+
result: SegmentMetrics['result'],
|
|
61
|
+
bandwidthStats: BandwidthStats,
|
|
62
|
+
payload: ReplayPayload
|
|
63
|
+
): SegmentMetrics {
|
|
64
|
+
return {
|
|
65
|
+
cssText: {
|
|
66
|
+
count: payload.cssText.count,
|
|
67
|
+
max: payload.cssText.max,
|
|
68
|
+
sum: payload.cssText.sum,
|
|
69
|
+
},
|
|
70
|
+
encoding: {
|
|
71
|
+
fullSnapshot: isFullSnapshotChangeRecordsEnabled() ? 'change' : 'v1',
|
|
72
|
+
incrementalSnapshot: isIncrementalSnapshotChangeRecordsEnabled() ? 'change' : 'v1',
|
|
73
|
+
},
|
|
74
|
+
isFullSnapshot: payload.isFullSnapshot,
|
|
75
|
+
ongoingRequests: {
|
|
76
|
+
count: bandwidthStats.ongoingRequestCount,
|
|
77
|
+
totalSize: bandwidthStats.ongoingByteCount,
|
|
78
|
+
},
|
|
79
|
+
recordCount: payload.recordCount,
|
|
80
|
+
result,
|
|
81
|
+
serializationDuration: {
|
|
82
|
+
count: payload.serializationDuration.count,
|
|
83
|
+
max: payload.serializationDuration.max,
|
|
84
|
+
sum: payload.serializationDuration.sum,
|
|
85
|
+
},
|
|
86
|
+
size: {
|
|
87
|
+
compressed: payload.bytesCount,
|
|
88
|
+
raw: payload.rawSize,
|
|
89
|
+
},
|
|
90
|
+
}
|
|
91
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { getEventBridge } from '@datadog/browser-core'
|
|
2
|
+
import type { ViewHistory } from '@datadog/browser-rum-core'
|
|
3
|
+
import type { BrowserRecord } from '../types'
|
|
4
|
+
|
|
5
|
+
export function startRecordBridge(viewHistory: ViewHistory) {
|
|
6
|
+
const bridge = getEventBridge<'record', BrowserRecord>()!
|
|
7
|
+
|
|
8
|
+
return {
|
|
9
|
+
addRecord: (record: BrowserRecord) => {
|
|
10
|
+
// Get the current active view, not at the time of the record, aligning with the segment logic.
|
|
11
|
+
// This approach could potentially associate the record to an incorrect view, in case the record date is in the past (e.g. frustration records).
|
|
12
|
+
// However the risk is minimal. We could address the issue when potential negative impact are identified.
|
|
13
|
+
const view = viewHistory.findView()!
|
|
14
|
+
bridge.send('record', record, view.id)
|
|
15
|
+
},
|
|
16
|
+
}
|
|
17
|
+
}
|