@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,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.lazyLoadRecorder = lazyLoadRecorder;
|
|
37
|
+
exports.importRecorder = importRecorder;
|
|
38
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
39
|
+
const scriptLoadingError_1 = require("../domain/scriptLoadingError");
|
|
40
|
+
async function lazyLoadRecorder() {
|
|
41
|
+
try {
|
|
42
|
+
return await (0, browser_core_1.mockable)(importRecorder)();
|
|
43
|
+
}
|
|
44
|
+
catch (error) {
|
|
45
|
+
(0, scriptLoadingError_1.reportScriptLoadingError)({
|
|
46
|
+
error,
|
|
47
|
+
source: 'Recorder',
|
|
48
|
+
scriptType: 'module',
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
async function importRecorder() {
|
|
53
|
+
const module = await Promise.resolve().then(() => __importStar(require(/* webpackChunkName: "recorder" */ './startRecording')));
|
|
54
|
+
return module.startRecording;
|
|
55
|
+
}
|
|
56
|
+
//# sourceMappingURL=lazyLoadRecorder.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lazyLoadRecorder.js","sourceRoot":"","sources":["../../src/boot/lazyLoadRecorder.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,4CAUC;AAED,wCAGC;AAnBD,wDAAgD;AAChD,qEAAuE;AAGhE,KAAK,UAAU,gBAAgB;IACpC,IAAI,CAAC;QACH,OAAO,MAAM,IAAA,uBAAQ,EAAC,cAAc,CAAC,EAAE,CAAA;IACzC,CAAC;IAAC,OAAO,KAAc,EAAE,CAAC;QACxB,IAAA,6CAAwB,EAAC;YACvB,KAAK;YACL,MAAM,EAAE,UAAU;YAClB,UAAU,EAAE,QAAQ;SACrB,CAAC,CAAA;IACJ,CAAC;AACH,CAAC;AAEM,KAAK,UAAU,cAAc;IAClC,MAAM,MAAM,GAAG,wDAAa,kCAAkC,CAAC,kBAAkB,GAAC,CAAA;IAClF,OAAO,MAAM,CAAC,cAAc,CAAA;AAC9B,CAAC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import type { LifeCycle, RumConfiguration, RumSessionManager, StartRecordingOptions, ViewHistory } from '@datadog/browser-rum-core';
|
|
2
|
+
import type { Telemetry, DeflateEncoder } from '@datadog/browser-core';
|
|
3
|
+
import type { startRecording } from './startRecording';
|
|
4
|
+
export type StartRecording = typeof startRecording;
|
|
5
|
+
export declare const enum RecorderStatus {
|
|
6
|
+
Stopped = 0,
|
|
7
|
+
IntentToStart = 1,
|
|
8
|
+
Starting = 2,
|
|
9
|
+
Started = 3
|
|
10
|
+
}
|
|
11
|
+
export type RecorderInitEvent = {
|
|
12
|
+
type: 'start';
|
|
13
|
+
forced: boolean;
|
|
14
|
+
} | {
|
|
15
|
+
type: 'document-ready';
|
|
16
|
+
} | {
|
|
17
|
+
type: 'recorder-settled';
|
|
18
|
+
} | {
|
|
19
|
+
type: 'aborted';
|
|
20
|
+
} | {
|
|
21
|
+
type: 'deflate-encoder-load-failed';
|
|
22
|
+
} | {
|
|
23
|
+
type: 'recorder-load-failed';
|
|
24
|
+
} | {
|
|
25
|
+
type: 'succeeded';
|
|
26
|
+
};
|
|
27
|
+
export interface Strategy {
|
|
28
|
+
start: (options?: StartRecordingOptions) => void;
|
|
29
|
+
stop: () => void;
|
|
30
|
+
isRecording: () => boolean;
|
|
31
|
+
getSessionReplayLink: () => string | undefined;
|
|
32
|
+
}
|
|
33
|
+
export declare function createPostStartStrategy(configuration: RumConfiguration, lifeCycle: LifeCycle, sessionManager: RumSessionManager, viewHistory: ViewHistory, loadRecorder: () => Promise<StartRecording | undefined>, getOrCreateDeflateEncoder: () => DeflateEncoder | undefined, telemetry: Telemetry): Strategy;
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createPostStartStrategy = createPostStartStrategy;
|
|
4
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
5
|
+
const getSessionReplayLink_1 = require("../domain/getSessionReplayLink");
|
|
6
|
+
const startRecorderInitTelemetry_1 = require("../domain/startRecorderInitTelemetry");
|
|
7
|
+
function createPostStartStrategy(configuration, lifeCycle, sessionManager, viewHistory, loadRecorder, getOrCreateDeflateEncoder, telemetry) {
|
|
8
|
+
let status = 0 /* RecorderStatus.Stopped */;
|
|
9
|
+
let stopRecording;
|
|
10
|
+
lifeCycle.subscribe(9 /* LifeCycleEventType.SESSION_EXPIRED */, () => {
|
|
11
|
+
if (status === 2 /* RecorderStatus.Starting */ || status === 3 /* RecorderStatus.Started */) {
|
|
12
|
+
stop();
|
|
13
|
+
status = 1 /* RecorderStatus.IntentToStart */;
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
lifeCycle.subscribe(10 /* LifeCycleEventType.SESSION_RENEWED */, () => {
|
|
17
|
+
if (status === 1 /* RecorderStatus.IntentToStart */) {
|
|
18
|
+
start();
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
const observable = new browser_core_1.Observable();
|
|
22
|
+
(0, startRecorderInitTelemetry_1.startRecorderInitTelemetry)(telemetry, observable);
|
|
23
|
+
const doStart = async (forced) => {
|
|
24
|
+
observable.notify({ type: 'start', forced });
|
|
25
|
+
const [startRecordingImpl] = await Promise.all([
|
|
26
|
+
notifyWhenSettled(observable, { type: 'recorder-settled' }, loadRecorder()),
|
|
27
|
+
notifyWhenSettled(observable, { type: 'document-ready' }, (0, browser_core_1.asyncRunOnReadyState)(configuration, 'interactive')),
|
|
28
|
+
]);
|
|
29
|
+
if (status !== 2 /* RecorderStatus.Starting */) {
|
|
30
|
+
observable.notify({ type: 'aborted' });
|
|
31
|
+
return;
|
|
32
|
+
}
|
|
33
|
+
if (!startRecordingImpl) {
|
|
34
|
+
status = 0 /* RecorderStatus.Stopped */;
|
|
35
|
+
observable.notify({ type: 'recorder-load-failed' });
|
|
36
|
+
return;
|
|
37
|
+
}
|
|
38
|
+
const deflateEncoder = getOrCreateDeflateEncoder();
|
|
39
|
+
if (!deflateEncoder) {
|
|
40
|
+
status = 0 /* RecorderStatus.Stopped */;
|
|
41
|
+
observable.notify({ type: 'deflate-encoder-load-failed' });
|
|
42
|
+
return;
|
|
43
|
+
}
|
|
44
|
+
;
|
|
45
|
+
({ stop: stopRecording } = startRecordingImpl(lifeCycle, configuration, sessionManager, viewHistory, deflateEncoder, telemetry));
|
|
46
|
+
status = 3 /* RecorderStatus.Started */;
|
|
47
|
+
observable.notify({ type: 'succeeded' });
|
|
48
|
+
};
|
|
49
|
+
function start(options) {
|
|
50
|
+
const session = sessionManager.findTrackedSession();
|
|
51
|
+
if (canStartRecording(session, options)) {
|
|
52
|
+
status = 1 /* RecorderStatus.IntentToStart */;
|
|
53
|
+
return;
|
|
54
|
+
}
|
|
55
|
+
if (isRecordingInProgress(status)) {
|
|
56
|
+
return;
|
|
57
|
+
}
|
|
58
|
+
status = 2 /* RecorderStatus.Starting */;
|
|
59
|
+
const forced = shouldForceReplay(session, options) || false;
|
|
60
|
+
// Intentionally not awaiting doStart() to keep it asynchronous
|
|
61
|
+
doStart(forced).catch(browser_core_1.monitorError);
|
|
62
|
+
if (forced) {
|
|
63
|
+
sessionManager.setForcedReplay();
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
function stop() {
|
|
67
|
+
if (status === 3 /* RecorderStatus.Started */) {
|
|
68
|
+
stopRecording === null || stopRecording === void 0 ? void 0 : stopRecording();
|
|
69
|
+
}
|
|
70
|
+
status = 0 /* RecorderStatus.Stopped */;
|
|
71
|
+
}
|
|
72
|
+
return {
|
|
73
|
+
start,
|
|
74
|
+
stop,
|
|
75
|
+
getSessionReplayLink() {
|
|
76
|
+
return (0, getSessionReplayLink_1.getSessionReplayLink)(configuration, sessionManager, viewHistory, status !== 0 /* RecorderStatus.Stopped */);
|
|
77
|
+
},
|
|
78
|
+
isRecording: () => status === 3 /* RecorderStatus.Started */,
|
|
79
|
+
};
|
|
80
|
+
}
|
|
81
|
+
function canStartRecording(session, options) {
|
|
82
|
+
return !session || (session.sessionReplay === 0 /* SessionReplayState.OFF */ && (!options || !options.force));
|
|
83
|
+
}
|
|
84
|
+
function isRecordingInProgress(status) {
|
|
85
|
+
return status === 2 /* RecorderStatus.Starting */ || status === 3 /* RecorderStatus.Started */;
|
|
86
|
+
}
|
|
87
|
+
function shouldForceReplay(session, options) {
|
|
88
|
+
return options && options.force && session.sessionReplay === 0 /* SessionReplayState.OFF */;
|
|
89
|
+
}
|
|
90
|
+
async function notifyWhenSettled(observable, event, promise) {
|
|
91
|
+
try {
|
|
92
|
+
return await promise;
|
|
93
|
+
}
|
|
94
|
+
finally {
|
|
95
|
+
observable.notify(event);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
//# sourceMappingURL=postStartStrategy.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"postStartStrategy.js","sourceRoot":"","sources":["../../src/boot/postStartStrategy.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { RumConfiguration } from '@datadog/browser-rum-core';
|
|
2
|
+
import type { Strategy } from './postStartStrategy';
|
|
3
|
+
export declare function createPreStartStrategy(): {
|
|
4
|
+
strategy: Strategy;
|
|
5
|
+
shouldStartImmediately: (configuration: RumConfiguration) => boolean;
|
|
6
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createPreStartStrategy = createPreStartStrategy;
|
|
4
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
5
|
+
function createPreStartStrategy() {
|
|
6
|
+
let status = 0 /* PreStartRecorderStatus.None */;
|
|
7
|
+
return {
|
|
8
|
+
strategy: {
|
|
9
|
+
start() {
|
|
10
|
+
status = 1 /* PreStartRecorderStatus.HadManualStart */;
|
|
11
|
+
},
|
|
12
|
+
stop() {
|
|
13
|
+
status = 2 /* PreStartRecorderStatus.HadManualStop */;
|
|
14
|
+
},
|
|
15
|
+
isRecording: () => false,
|
|
16
|
+
getSessionReplayLink: browser_core_1.noop,
|
|
17
|
+
},
|
|
18
|
+
shouldStartImmediately(configuration) {
|
|
19
|
+
return (status === 1 /* PreStartRecorderStatus.HadManualStart */ ||
|
|
20
|
+
(status === 0 /* PreStartRecorderStatus.None */ && !configuration.startSessionReplayRecordingManually));
|
|
21
|
+
},
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=preStartStrategy.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"preStartStrategy.js","sourceRoot":"","sources":["../../src/boot/preStartStrategy.ts"],"names":[],"mappings":";;AAUA,wDAuBC;AAjCD,wDAA4C;AAU5C,SAAgB,sBAAsB;IAIpC,IAAI,MAAM,sCAA8B,CAAA;IACxC,OAAO;QACL,QAAQ,EAAE;YACR,KAAK;gBACH,MAAM,gDAAwC,CAAA;YAChD,CAAC;YACD,IAAI;gBACF,MAAM,+CAAuC,CAAA;YAC/C,CAAC;YACD,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK;YACxB,oBAAoB,EAAE,mBAAgC;SACvD;QACD,sBAAsB,CAAC,aAAa;YAClC,OAAO,CACL,MAAM,kDAA0C;gBAChD,CAAC,MAAM,wCAAgC,IAAI,CAAC,aAAa,CAAC,mCAAmC,CAAC,CAC/F,CAAA;QACH,CAAC;KACF,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.makeProfilerApi = makeProfilerApi;
|
|
4
|
+
const browser_rum_core_1 = require("@datadog/browser-rum-core");
|
|
5
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
6
|
+
const profilingSupported_1 = require("../domain/profiling/profilingSupported");
|
|
7
|
+
const profilingContext_1 = require("../domain/profiling/profilingContext");
|
|
8
|
+
const lazyLoadProfiler_1 = require("./lazyLoadProfiler");
|
|
9
|
+
function makeProfilerApi() {
|
|
10
|
+
let profiler;
|
|
11
|
+
function onRumStart(lifeCycle, hooks, configuration, sessionManager, viewHistory, createEncoder) {
|
|
12
|
+
const session = sessionManager.findTrackedSession(); // Check if the session is tracked.
|
|
13
|
+
if (!session) {
|
|
14
|
+
// No session tracked, no profiling.
|
|
15
|
+
// Note: No Profiling context is set at this stage.
|
|
16
|
+
return;
|
|
17
|
+
}
|
|
18
|
+
// Sampling (sticky sampling based on session id)
|
|
19
|
+
if (!(0, browser_rum_core_1.isSampled)(session.id, configuration.profilingSampleRate)) {
|
|
20
|
+
// No sampling, no profiling.
|
|
21
|
+
// Note: No Profiling context is set at this stage.
|
|
22
|
+
return;
|
|
23
|
+
}
|
|
24
|
+
// Listen to events and add the profiling context to them.
|
|
25
|
+
const profilingContextManager = (0, profilingContext_1.startProfilingContext)(hooks);
|
|
26
|
+
// Browser support check
|
|
27
|
+
if (!(0, profilingSupported_1.isProfilingSupported)()) {
|
|
28
|
+
profilingContextManager.set({
|
|
29
|
+
status: 'error',
|
|
30
|
+
error_reason: 'not-supported-by-browser',
|
|
31
|
+
});
|
|
32
|
+
return;
|
|
33
|
+
}
|
|
34
|
+
(0, lazyLoadProfiler_1.lazyLoadProfiler)()
|
|
35
|
+
.then((createRumProfiler) => {
|
|
36
|
+
if (!createRumProfiler) {
|
|
37
|
+
profilingContextManager.set({ status: 'error', error_reason: 'failed-to-lazy-load' });
|
|
38
|
+
return;
|
|
39
|
+
}
|
|
40
|
+
profiler = createRumProfiler(configuration, lifeCycle, sessionManager, profilingContextManager, createEncoder, viewHistory, undefined);
|
|
41
|
+
profiler.start();
|
|
42
|
+
})
|
|
43
|
+
.catch(browser_core_1.monitorError);
|
|
44
|
+
}
|
|
45
|
+
return {
|
|
46
|
+
onRumStart,
|
|
47
|
+
stop: () => {
|
|
48
|
+
profiler === null || profiler === void 0 ? void 0 : profiler.stop();
|
|
49
|
+
},
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
//# sourceMappingURL=profilerApi.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"profilerApi.js","sourceRoot":"","sources":["../../src/boot/profilerApi.ts"],"names":[],"mappings":";;AAgBA,0CAiEC;AAxED,gEAAqD;AACrD,wDAAoD;AAEpD,+EAA6E;AAC7E,2EAA4E;AAC5E,yDAAqD;AAErD,SAAgB,eAAe;IAC7B,IAAI,QAAiC,CAAA;IAErC,SAAS,UAAU,CACjB,SAAoB,EACpB,KAAY,EACZ,aAA+B,EAC/B,cAAiC,EACjC,WAAwB,EACxB,aAA4D;QAE5D,MAAM,OAAO,GAAG,cAAc,CAAC,kBAAkB,EAAE,CAAA,CAAC,mCAAmC;QAEvF,IAAI,CAAC,OAAO,EAAE,CAAC;YACb,oCAAoC;YACpC,mDAAmD;YACnD,OAAM;QACR,CAAC;QAED,iDAAiD;QACjD,IAAI,CAAC,IAAA,4BAAS,EAAC,OAAO,CAAC,EAAE,EAAE,aAAa,CAAC,mBAAmB,CAAC,EAAE,CAAC;YAC9D,6BAA6B;YAC7B,mDAAmD;YACnD,OAAM;QACR,CAAC;QAED,0DAA0D;QAC1D,MAAM,uBAAuB,GAAG,IAAA,wCAAqB,EAAC,KAAK,CAAC,CAAA;QAE5D,wBAAwB;QACxB,IAAI,CAAC,IAAA,yCAAoB,GAAE,EAAE,CAAC;YAC5B,uBAAuB,CAAC,GAAG,CAAC;gBAC1B,MAAM,EAAE,OAAO;gBACf,YAAY,EAAE,0BAA0B;aACzC,CAAC,CAAA;YACF,OAAM;QACR,CAAC;QAED,IAAA,mCAAgB,GAAE;aACf,IAAI,CAAC,CAAC,iBAAiB,EAAE,EAAE;YAC1B,IAAI,CAAC,iBAAiB,EAAE,CAAC;gBACvB,uBAAuB,CAAC,GAAG,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,YAAY,EAAE,qBAAqB,EAAE,CAAC,CAAA;gBACrF,OAAM;YACR,CAAC;YAED,QAAQ,GAAG,iBAAiB,CAC1B,aAAa,EACb,SAAS,EACT,cAAc,EACd,uBAAuB,EACvB,aAAa,EACb,WAAW,EACX,SAAS,CACV,CAAA;YACD,QAAQ,CAAC,KAAK,EAAE,CAAA;QAClB,CAAC,CAAC;aACD,KAAK,CAAC,2BAAY,CAAC,CAAA;IACxB,CAAC;IAED,OAAO;QACL,UAAU;QACV,IAAI,EAAE,GAAG,EAAE;YACT,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAE,IAAI,EAAE,CAAA;QAClB,CAAC;KACF,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.makeRecorderApi = makeRecorderApi;
|
|
4
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
5
|
+
const replayStats_1 = require("../domain/replayStats");
|
|
6
|
+
const deflate_1 = require("../domain/deflate");
|
|
7
|
+
const isBrowserSupported_1 = require("./isBrowserSupported");
|
|
8
|
+
const postStartStrategy_1 = require("./postStartStrategy");
|
|
9
|
+
const preStartStrategy_1 = require("./preStartStrategy");
|
|
10
|
+
function makeRecorderApi(loadRecorder) {
|
|
11
|
+
if (((0, browser_core_1.canUseEventBridge)() && !(0, browser_core_1.bridgeSupports)("records" /* BridgeCapability.RECORDS */)) || !(0, isBrowserSupported_1.isBrowserSupported)()) {
|
|
12
|
+
return {
|
|
13
|
+
start: browser_core_1.noop,
|
|
14
|
+
stop: browser_core_1.noop,
|
|
15
|
+
getReplayStats: () => undefined,
|
|
16
|
+
onRumStart: browser_core_1.noop,
|
|
17
|
+
isRecording: () => false,
|
|
18
|
+
getSessionReplayLink: () => undefined,
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
// eslint-disable-next-line prefer-const
|
|
22
|
+
let { strategy, shouldStartImmediately } = (0, preStartStrategy_1.createPreStartStrategy)();
|
|
23
|
+
return {
|
|
24
|
+
start: (options) => strategy.start(options),
|
|
25
|
+
stop: () => strategy.stop(),
|
|
26
|
+
getSessionReplayLink: () => strategy.getSessionReplayLink(),
|
|
27
|
+
onRumStart,
|
|
28
|
+
isRecording: () =>
|
|
29
|
+
// The worker is started optimistically, meaning we could have started to record but its
|
|
30
|
+
// initialization fails a bit later. This could happen when:
|
|
31
|
+
// * the worker URL (blob or plain URL) is blocked by CSP in Firefox only (Chromium and Safari
|
|
32
|
+
// throw an exception when instantiating the worker, and IE doesn't care about CSP)
|
|
33
|
+
// * the browser fails to load the worker in case the workerUrl is used
|
|
34
|
+
// * an unexpected error occurs in the Worker before initialization, ex:
|
|
35
|
+
// * a runtime exception collected by monitor()
|
|
36
|
+
// * a syntax error notified by the browser via an error event
|
|
37
|
+
// * the worker is unresponsive for some reason and timeouts
|
|
38
|
+
//
|
|
39
|
+
// It is not expected to happen often. Nonetheless, the "replayable" status on RUM events is
|
|
40
|
+
// an important part of the Datadog App:
|
|
41
|
+
// * If we have a false positive (we set has_replay: true even if no replay data is present),
|
|
42
|
+
// we might display broken links to the Session Replay player.
|
|
43
|
+
// * If we have a false negative (we don't set has_replay: true even if replay data is
|
|
44
|
+
// available), it is less noticeable because no link will be displayed.
|
|
45
|
+
//
|
|
46
|
+
// Thus, it is better to have false negative, so let's make sure the worker is correctly
|
|
47
|
+
// initialized before advertizing that we are recording.
|
|
48
|
+
//
|
|
49
|
+
// In the future, when the compression worker will also be used for RUM data, this will be
|
|
50
|
+
// less important since no RUM event will be sent when the worker fails to initialize.
|
|
51
|
+
(0, deflate_1.getDeflateWorkerStatus)() === 3 /* DeflateWorkerStatus.Initialized */ && strategy.isRecording(),
|
|
52
|
+
getReplayStats: (viewId) => (0, deflate_1.getDeflateWorkerStatus)() === 3 /* DeflateWorkerStatus.Initialized */ ? (0, replayStats_1.getReplayStats)(viewId) : undefined,
|
|
53
|
+
};
|
|
54
|
+
function onRumStart(lifeCycle, configuration, sessionManager, viewHistory, worker, telemetry) {
|
|
55
|
+
let cachedDeflateEncoder;
|
|
56
|
+
function getOrCreateDeflateEncoder() {
|
|
57
|
+
if (!cachedDeflateEncoder) {
|
|
58
|
+
worker !== null && worker !== void 0 ? worker : (worker = (0, deflate_1.startDeflateWorker)(configuration, 'Datadog Session Replay', () => strategy.stop()));
|
|
59
|
+
if (worker) {
|
|
60
|
+
cachedDeflateEncoder = (0, deflate_1.createDeflateEncoder)(configuration, worker, 1 /* DeflateEncoderStreamId.REPLAY */);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
return cachedDeflateEncoder;
|
|
64
|
+
}
|
|
65
|
+
strategy = (0, postStartStrategy_1.createPostStartStrategy)(configuration, lifeCycle, sessionManager, viewHistory, loadRecorder, getOrCreateDeflateEncoder, telemetry);
|
|
66
|
+
if (shouldStartImmediately(configuration)) {
|
|
67
|
+
strategy.start();
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
//# sourceMappingURL=recorderApi.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"recorderApi.js","sourceRoot":"","sources":["../../src/boot/recorderApi.ts"],"names":[],"mappings":";;AA4BA,0CAoFC;AA/GD,wDAM8B;AAS9B,uDAA4E;AAC5E,+CAK0B;AAC1B,6DAAyD;AAEzD,2DAA6D;AAC7D,yDAA2D;AAE3D,SAAgB,eAAe,CAAC,YAAuD;IACrF,IAAI,CAAC,IAAA,gCAAiB,GAAE,IAAI,CAAC,IAAA,6BAAc,2CAA0B,CAAC,IAAI,CAAC,IAAA,uCAAkB,GAAE,EAAE,CAAC;QAChG,OAAO;YACL,KAAK,EAAE,mBAAI;YACX,IAAI,EAAE,mBAAI;YACV,cAAc,EAAE,GAAG,EAAE,CAAC,SAAS;YAC/B,UAAU,EAAE,mBAAI;YAChB,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK;YACxB,oBAAoB,EAAE,GAAG,EAAE,CAAC,SAAS;SACtC,CAAA;IACH,CAAC;IAED,wCAAwC;IACxC,IAAI,EAAE,QAAQ,EAAE,sBAAsB,EAAE,GAAG,IAAA,yCAAsB,GAAE,CAAA;IAEnE,OAAO;QACL,KAAK,EAAE,CAAC,OAA+B,EAAE,EAAE,CAAC,QAAQ,CAAC,KAAK,CAAC,OAAO,CAAC;QACnE,IAAI,EAAE,GAAG,EAAE,CAAC,QAAQ,CAAC,IAAI,EAAE;QAC3B,oBAAoB,EAAE,GAAG,EAAE,CAAC,QAAQ,CAAC,oBAAoB,EAAE;QAC3D,UAAU;QACV,WAAW,EAAE,GAAG,EAAE;QAChB,wFAAwF;QACxF,4DAA4D;QAC5D,8FAA8F;QAC9F,mFAAmF;QACnF,uEAAuE;QACvE,wEAAwE;QACxE,iDAAiD;QACjD,gEAAgE;QAChE,4DAA4D;QAC5D,EAAE;QACF,4FAA4F;QAC5F,wCAAwC;QACxC,6FAA6F;QAC7F,8DAA8D;QAC9D,sFAAsF;QACtF,uEAAuE;QACvE,EAAE;QACF,wFAAwF;QACxF,wDAAwD;QACxD,EAAE;QACF,0FAA0F;QAC1F,sFAAsF;QACtF,IAAA,gCAAsB,GAAE,4CAAoC,IAAI,QAAQ,CAAC,WAAW,EAAE;QAExF,cAAc,EAAE,CAAC,MAAM,EAAE,EAAE,CACzB,IAAA,gCAAsB,GAAE,4CAAoC,CAAC,CAAC,CAAC,IAAA,4BAAkB,EAAC,MAAM,CAAC,CAAC,CAAC,CAAC,SAAS;KACxG,CAAA;IAED,SAAS,UAAU,CACjB,SAAoB,EACpB,aAA+B,EAC/B,cAAiC,EACjC,WAAwB,EACxB,MAAiC,EACjC,SAAoB;QAEpB,IAAI,oBAAgD,CAAA;QAEpD,SAAS,yBAAyB;YAChC,IAAI,CAAC,oBAAoB,EAAE,CAAC;gBAC1B,MAAM,aAAN,MAAM,cAAN,MAAM,IAAN,MAAM,GAAK,IAAA,4BAAkB,EAAC,aAAa,EAAE,wBAAwB,EAAE,GAAG,EAAE,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC,EAAA;gBAE7F,IAAI,MAAM,EAAE,CAAC;oBACX,oBAAoB,GAAG,IAAA,8BAAoB,EAAC,aAAa,EAAE,MAAM,wCAAgC,CAAA;gBACnG,CAAC;YACH,CAAC;YACD,OAAO,oBAAoB,CAAA;QAC7B,CAAC;QAED,QAAQ,GAAG,IAAA,2CAAuB,EAChC,aAAa,EACb,SAAS,EACT,cAAc,EACd,WAAW,EACX,YAAY,EACZ,yBAAyB,EACzB,SAAS,CACV,CAAA;QAED,IAAI,sBAAsB,CAAC,aAAa,CAAC,EAAE,CAAC;YAC1C,QAAQ,CAAC,KAAK,EAAE,CAAA;QAClB,CAAC;IACH,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { HttpRequest, DeflateEncoder, Telemetry } from '@datadog/browser-core';
|
|
2
|
+
import type { LifeCycle, ViewHistory, RumConfiguration, RumSessionManager } from '@datadog/browser-rum-core';
|
|
3
|
+
import type { ReplayPayload } from '../domain/segmentCollection';
|
|
4
|
+
export declare function startRecording(lifeCycle: LifeCycle, configuration: RumConfiguration, sessionManager: RumSessionManager, viewHistory: ViewHistory, encoder: DeflateEncoder, telemetry: Telemetry, httpRequest?: HttpRequest<ReplayPayload>): {
|
|
5
|
+
stop: () => void;
|
|
6
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.startRecording = startRecording;
|
|
4
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
5
|
+
const record_1 = require("../domain/record");
|
|
6
|
+
const segmentCollection_1 = require("../domain/segmentCollection");
|
|
7
|
+
const startRecordBridge_1 = require("../domain/startRecordBridge");
|
|
8
|
+
function startRecording(lifeCycle, configuration, sessionManager, viewHistory, encoder, telemetry, httpRequest) {
|
|
9
|
+
const cleanupTasks = [];
|
|
10
|
+
const reportError = (error) => {
|
|
11
|
+
lifeCycle.notify(14 /* LifeCycleEventType.RAW_ERROR_COLLECTED */, { error });
|
|
12
|
+
// monitor-until: forever, to keep an eye on the errors reported to customers
|
|
13
|
+
(0, browser_core_1.addTelemetryDebug)('Error reported to customer', { 'error.message': error.message });
|
|
14
|
+
};
|
|
15
|
+
const replayRequest = httpRequest || (0, browser_core_1.createHttpRequest)([configuration.sessionReplayEndpointBuilder], reportError, segmentCollection_1.SEGMENT_BYTES_LIMIT);
|
|
16
|
+
let addRecord;
|
|
17
|
+
let addStats;
|
|
18
|
+
if (!(0, browser_core_1.canUseEventBridge)()) {
|
|
19
|
+
const segmentCollection = (0, segmentCollection_1.startSegmentCollection)(lifeCycle, configuration, sessionManager, viewHistory, replayRequest, encoder);
|
|
20
|
+
addRecord = segmentCollection.addRecord;
|
|
21
|
+
addStats = segmentCollection.addStats;
|
|
22
|
+
cleanupTasks.push(segmentCollection.stop);
|
|
23
|
+
const segmentTelemetry = (0, segmentCollection_1.startSegmentTelemetry)(telemetry, replayRequest.observable);
|
|
24
|
+
cleanupTasks.push(segmentTelemetry.stop);
|
|
25
|
+
}
|
|
26
|
+
else {
|
|
27
|
+
;
|
|
28
|
+
({ addRecord } = (0, startRecordBridge_1.startRecordBridge)(viewHistory));
|
|
29
|
+
addStats = browser_core_1.noop;
|
|
30
|
+
}
|
|
31
|
+
const { stop: stopRecording } = (0, record_1.record)({
|
|
32
|
+
emitRecord: addRecord,
|
|
33
|
+
emitStats: addStats,
|
|
34
|
+
configuration,
|
|
35
|
+
lifeCycle,
|
|
36
|
+
viewHistory,
|
|
37
|
+
});
|
|
38
|
+
cleanupTasks.push(stopRecording);
|
|
39
|
+
return {
|
|
40
|
+
stop: () => {
|
|
41
|
+
cleanupTasks.forEach((task) => task());
|
|
42
|
+
},
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
//# sourceMappingURL=startRecording.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"startRecording.js","sourceRoot":"","sources":["../../src/boot/startRecording.ts"],"names":[],"mappings":";;AAYA,wCAyDC;AApED,wDAAqG;AAKrG,6CAAyC;AAEzC,mEAAgH;AAEhH,mEAA+D;AAE/D,SAAgB,cAAc,CAC5B,SAAoB,EACpB,aAA+B,EAC/B,cAAiC,EACjC,WAAwB,EACxB,OAAuB,EACvB,SAAoB,EACpB,WAAwC;IAExC,MAAM,YAAY,GAAsB,EAAE,CAAA;IAE1C,MAAM,WAAW,GAAG,CAAC,KAAe,EAAE,EAAE;QACtC,SAAS,CAAC,MAAM,kDAAyC,EAAE,KAAK,EAAE,CAAC,CAAA;QACnE,6EAA6E;QAC7E,IAAA,gCAAiB,EAAC,4BAA4B,EAAE,EAAE,eAAe,EAAE,KAAK,CAAC,OAAO,EAAE,CAAC,CAAA;IACrF,CAAC,CAAA;IAED,MAAM,aAAa,GACjB,WAAW,IAAI,IAAA,gCAAiB,EAAC,CAAC,aAAa,CAAC,4BAA4B,CAAC,EAAE,WAAW,EAAE,uCAAmB,CAAC,CAAA;IAElH,IAAI,SAA0C,CAAA;IAC9C,IAAI,QAA6C,CAAA;IAEjD,IAAI,CAAC,IAAA,gCAAiB,GAAE,EAAE,CAAC;QACzB,MAAM,iBAAiB,GAAG,IAAA,0CAAsB,EAC9C,SAAS,EACT,aAAa,EACb,cAAc,EACd,WAAW,EACX,aAAa,EACb,OAAO,CACR,CAAA;QACD,SAAS,GAAG,iBAAiB,CAAC,SAAS,CAAA;QACvC,QAAQ,GAAG,iBAAiB,CAAC,QAAQ,CAAA;QACrC,YAAY,CAAC,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QAEzC,MAAM,gBAAgB,GAAG,IAAA,yCAAqB,EAAC,SAAS,EAAE,aAAa,CAAC,UAAU,CAAC,CAAA;QACnF,YAAY,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAA;IAC1C,CAAC;SAAM,CAAC;QACN,CAAC;QAAA,CAAC,EAAE,SAAS,EAAE,GAAG,IAAA,qCAAiB,EAAC,WAAW,CAAC,CAAC,CAAA;QACjD,QAAQ,GAAG,mBAAI,CAAA;IACjB,CAAC;IAED,MAAM,EAAE,IAAI,EAAE,aAAa,EAAE,GAAG,IAAA,eAAM,EAAC;QACrC,UAAU,EAAE,SAAS;QACrB,SAAS,EAAE,QAAQ;QACnB,aAAa;QACb,SAAS;QACT,WAAW;KACZ,CAAC,CAAA;IACF,YAAY,CAAC,IAAI,CAAC,aAAa,CAAC,CAAA;IAEhC,OAAO;QACL,IAAI,EAAE,GAAG,EAAE;YACT,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,EAAE,CAAC,CAAA;QACxC,CAAC;KACF,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { DeflateEncoder, DeflateEncoderStreamId, DeflateWorker } from '@datadog/browser-core';
|
|
2
|
+
import type { RumConfiguration } from '@datadog/browser-rum-core';
|
|
3
|
+
export declare function createDeflateEncoder(configuration: RumConfiguration, worker: DeflateWorker, streamId: DeflateEncoderStreamId): DeflateEncoder;
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createDeflateEncoder = createDeflateEncoder;
|
|
4
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
5
|
+
function createDeflateEncoder(configuration, worker, streamId) {
|
|
6
|
+
let rawBytesCount = 0;
|
|
7
|
+
let compressedData = [];
|
|
8
|
+
let compressedDataTrailer;
|
|
9
|
+
let isEmpty = true;
|
|
10
|
+
let nextWriteActionId = 0;
|
|
11
|
+
const pendingWriteActions = [];
|
|
12
|
+
const { stop: removeMessageListener } = (0, browser_core_1.addEventListener)(configuration, worker, 'message', ({ data: workerResponse }) => {
|
|
13
|
+
if (workerResponse.type !== 'wrote' || workerResponse.streamId !== streamId) {
|
|
14
|
+
return;
|
|
15
|
+
}
|
|
16
|
+
const nextPendingAction = pendingWriteActions[0];
|
|
17
|
+
if (nextPendingAction) {
|
|
18
|
+
if (nextPendingAction.id === workerResponse.id) {
|
|
19
|
+
pendingWriteActions.shift();
|
|
20
|
+
rawBytesCount += workerResponse.additionalBytesCount;
|
|
21
|
+
compressedData.push(workerResponse.result);
|
|
22
|
+
compressedDataTrailer = workerResponse.trailer;
|
|
23
|
+
if (nextPendingAction.writeCallback) {
|
|
24
|
+
nextPendingAction.writeCallback(workerResponse.result.byteLength);
|
|
25
|
+
}
|
|
26
|
+
else if (nextPendingAction.finishCallback) {
|
|
27
|
+
nextPendingAction.finishCallback();
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
else if (nextPendingAction.id < workerResponse.id) {
|
|
31
|
+
// Worker responses received out of order
|
|
32
|
+
removeMessageListener();
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
function consumeResult() {
|
|
37
|
+
const output = compressedData.length === 0 ? new Uint8Array(0) : (0, browser_core_1.concatBuffers)(compressedData.concat(compressedDataTrailer));
|
|
38
|
+
const result = {
|
|
39
|
+
rawBytesCount,
|
|
40
|
+
output,
|
|
41
|
+
outputBytesCount: output.byteLength,
|
|
42
|
+
encoding: 'deflate',
|
|
43
|
+
};
|
|
44
|
+
rawBytesCount = 0;
|
|
45
|
+
compressedData = [];
|
|
46
|
+
return result;
|
|
47
|
+
}
|
|
48
|
+
function sendResetIfNeeded() {
|
|
49
|
+
if (!isEmpty) {
|
|
50
|
+
worker.postMessage({
|
|
51
|
+
action: 'reset',
|
|
52
|
+
streamId,
|
|
53
|
+
});
|
|
54
|
+
isEmpty = true;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
return {
|
|
58
|
+
isAsync: true,
|
|
59
|
+
get isEmpty() {
|
|
60
|
+
return isEmpty;
|
|
61
|
+
},
|
|
62
|
+
write(data, callback) {
|
|
63
|
+
worker.postMessage({
|
|
64
|
+
action: 'write',
|
|
65
|
+
id: nextWriteActionId,
|
|
66
|
+
data,
|
|
67
|
+
streamId,
|
|
68
|
+
});
|
|
69
|
+
pendingWriteActions.push({
|
|
70
|
+
id: nextWriteActionId,
|
|
71
|
+
writeCallback: callback,
|
|
72
|
+
data,
|
|
73
|
+
});
|
|
74
|
+
isEmpty = false;
|
|
75
|
+
nextWriteActionId += 1;
|
|
76
|
+
},
|
|
77
|
+
finish(callback) {
|
|
78
|
+
sendResetIfNeeded();
|
|
79
|
+
if (!pendingWriteActions.length) {
|
|
80
|
+
callback(consumeResult());
|
|
81
|
+
}
|
|
82
|
+
else {
|
|
83
|
+
// Make sure we do not call any write callback
|
|
84
|
+
pendingWriteActions.forEach((pendingWriteAction) => {
|
|
85
|
+
delete pendingWriteAction.writeCallback;
|
|
86
|
+
});
|
|
87
|
+
// Wait for the last action to finish before calling the finish callback
|
|
88
|
+
pendingWriteActions[pendingWriteActions.length - 1].finishCallback = () => callback(consumeResult());
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
finishSync() {
|
|
92
|
+
sendResetIfNeeded();
|
|
93
|
+
const pendingData = pendingWriteActions.map((pendingWriteAction) => pendingWriteAction.data).join('');
|
|
94
|
+
// Ignore all pending write actions responses from the worker
|
|
95
|
+
pendingWriteActions.length = 0;
|
|
96
|
+
return { ...consumeResult(), pendingData };
|
|
97
|
+
},
|
|
98
|
+
estimateEncodedBytesCount(data) {
|
|
99
|
+
// This is a rough estimation of the data size once it'll be encoded by deflate. We observed
|
|
100
|
+
// that if it's the first chunk of data pushed to the stream, the ratio is lower (3-4), but
|
|
101
|
+
// after that the ratio is greater (10+). We chose 8 here, which (on average) seems to produce
|
|
102
|
+
// requests of the expected size.
|
|
103
|
+
return data.length / 8;
|
|
104
|
+
},
|
|
105
|
+
stop() {
|
|
106
|
+
removeMessageListener();
|
|
107
|
+
},
|
|
108
|
+
};
|
|
109
|
+
}
|
|
110
|
+
//# sourceMappingURL=deflateEncoder.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"deflateEncoder.js","sourceRoot":"","sources":["../../../src/domain/deflate/deflateEncoder.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { DeflateWorker } from '@datadog/browser-core';
|
|
2
|
+
import type { RumConfiguration } from '@datadog/browser-rum-core';
|
|
3
|
+
export declare const INITIALIZATION_TIME_OUT_DELAY: number;
|
|
4
|
+
/**
|
|
5
|
+
* In order to be sure that the worker is correctly working, we need a round trip of
|
|
6
|
+
* initialization messages, making the creation asynchronous.
|
|
7
|
+
* These worker lifecycle states handle this case.
|
|
8
|
+
*/
|
|
9
|
+
export declare const enum DeflateWorkerStatus {
|
|
10
|
+
Nil = 0,
|
|
11
|
+
Loading = 1,
|
|
12
|
+
Error = 2,
|
|
13
|
+
Initialized = 3
|
|
14
|
+
}
|
|
15
|
+
export type CreateDeflateWorker = typeof createDeflateWorker;
|
|
16
|
+
export declare function createDeflateWorker(configuration: RumConfiguration): DeflateWorker;
|
|
17
|
+
export declare function startDeflateWorker(configuration: RumConfiguration, source: string, onInitializationFailure: () => void): DeflateWorker | undefined;
|
|
18
|
+
export declare function resetDeflateWorkerState(): void;
|
|
19
|
+
export declare function getDeflateWorkerStatus(): DeflateWorkerStatus;
|
|
20
|
+
/**
|
|
21
|
+
* Starts the deflate worker and handle messages and errors
|
|
22
|
+
*
|
|
23
|
+
* The spec allow browsers to handle worker errors differently:
|
|
24
|
+
* - Chromium throws an exception
|
|
25
|
+
* - Firefox fires an error event
|
|
26
|
+
*
|
|
27
|
+
* more details: https://bugzilla.mozilla.org/show_bug.cgi?id=1736865#c2
|
|
28
|
+
*/
|
|
29
|
+
export declare function doStartDeflateWorker(configuration: RumConfiguration, source: string): void;
|