@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,55 @@
|
|
|
1
|
+
import type { TimeoutId, ClocksState } from '@datadog/browser-core';
|
|
2
|
+
import type { RumViewEntry } from '../../../types';
|
|
3
|
+
import type { LongTaskContext } from '../longTaskHistory';
|
|
4
|
+
import type { Profiler } from './profilerApi.types';
|
|
5
|
+
/**
|
|
6
|
+
* Additional data recorded during profiling session
|
|
7
|
+
*/
|
|
8
|
+
export interface RumProfilerEnrichmentData {
|
|
9
|
+
/** List of detected long tasks */
|
|
10
|
+
readonly longTasks: LongTaskContext[];
|
|
11
|
+
/** List of detected navigation entries */
|
|
12
|
+
readonly views: RumViewEntry[];
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* Describes profiler session state when it's stopped
|
|
16
|
+
*/
|
|
17
|
+
export interface RumProfilerStoppedInstance {
|
|
18
|
+
readonly state: 'stopped';
|
|
19
|
+
readonly stateReason: 'session-expired' | 'stopped-by-user' | 'initializing';
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Describes profiler session state when it's paused
|
|
23
|
+
* (this happens when user focuses on a different tab)
|
|
24
|
+
*/
|
|
25
|
+
export interface RumProfilerPausedInstance {
|
|
26
|
+
readonly state: 'paused';
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Describes profiler session state when it's running
|
|
30
|
+
*/
|
|
31
|
+
export interface RumProfilerRunningInstance extends RumProfilerEnrichmentData {
|
|
32
|
+
readonly state: 'running';
|
|
33
|
+
/** Current profiler instance */
|
|
34
|
+
readonly profiler: Profiler;
|
|
35
|
+
/** High resolution time when profiler session started */
|
|
36
|
+
readonly startClocks: ClocksState;
|
|
37
|
+
/** Timeout id to stop current session */
|
|
38
|
+
readonly timeoutId: TimeoutId;
|
|
39
|
+
/** Clean-up tasks to execute after running the Profiler */
|
|
40
|
+
readonly cleanupTasks: Array<() => void>;
|
|
41
|
+
}
|
|
42
|
+
export type RumProfilerInstance = RumProfilerStoppedInstance | RumProfilerPausedInstance | RumProfilerRunningInstance;
|
|
43
|
+
export interface RUMProfiler {
|
|
44
|
+
start: () => void;
|
|
45
|
+
stop: () => void;
|
|
46
|
+
isStopped: () => boolean;
|
|
47
|
+
isRunning: () => boolean;
|
|
48
|
+
isPaused: () => boolean;
|
|
49
|
+
}
|
|
50
|
+
export interface RUMProfilerConfiguration {
|
|
51
|
+
sampleIntervalMs: number;
|
|
52
|
+
collectIntervalMs: number;
|
|
53
|
+
minProfileDurationMs: number;
|
|
54
|
+
minNumberOfSamples: number;
|
|
55
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rumProfiler.types.js","sourceRoot":"","sources":["../../../../src/domain/profiling/types/rumProfiler.types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const getCustomOrDefaultViewName: (customViewName: string | undefined, viewPathUrl: string) => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getCustomOrDefaultViewName.js","sourceRoot":"","sources":["../../../../src/domain/profiling/utils/getCustomOrDefaultViewName.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AAEzD,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,cAAkC,EAAE,WAAmB,EAAU,EAAE,CAC5G,cAAc,IAAI,kBAAkB,CAAC,WAAW,CAAC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function getDefaultViewName(viewPathUrl: string): string;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// This is the regex used to extract the path from the url (from SimpleUrlGroupingProcessor.java)
|
|
2
|
+
// It's a bit different from the one in the java code because we removed the lookbehind unsupported by Safari.
|
|
3
|
+
const PATH_MIXED_ALPHANUMERICS = /\/(?![vV]\d{1,2}\/)([^/\d?]*\d+[^/?]*)/g;
|
|
4
|
+
export function getDefaultViewName(viewPathUrl) {
|
|
5
|
+
if (!viewPathUrl) {
|
|
6
|
+
return '/';
|
|
7
|
+
}
|
|
8
|
+
// Replace all the mixed alphanumerics with a ?
|
|
9
|
+
return viewPathUrl.replace(PATH_MIXED_ALPHANUMERICS, '/?');
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=getDefaultViewName.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getDefaultViewName.js","sourceRoot":"","sources":["../../../../src/domain/profiling/utils/getDefaultViewName.ts"],"names":[],"mappings":"AAAA,iGAAiG;AACjG,8GAA8G;AAC9G,MAAM,wBAAwB,GAAG,yCAAyC,CAAA;AAE1E,MAAM,UAAU,kBAAkB,CAAC,WAAmB;IACpD,IAAI,CAAC,WAAW,EAAE,CAAC;QACjB,OAAO,GAAG,CAAA;IACZ,CAAC;IAED,+CAA+C;IAC/C,OAAO,WAAW,CAAC,OAAO,CAAC,wBAAwB,EAAE,IAAI,CAAC,CAAA;AAC5D,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { ProfilerSample } from '../types';
|
|
2
|
+
/**
|
|
3
|
+
* Counts number of samples when the thread was not idle (stackId is defined)
|
|
4
|
+
*
|
|
5
|
+
* @param samples - Array of collected samples
|
|
6
|
+
* @returns Number of samples
|
|
7
|
+
*/
|
|
8
|
+
export declare function getNumberOfSamples(samples: ProfilerSample[]): number;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Counts number of samples when the thread was not idle (stackId is defined)
|
|
3
|
+
*
|
|
4
|
+
* @param samples - Array of collected samples
|
|
5
|
+
* @returns Number of samples
|
|
6
|
+
*/
|
|
7
|
+
export function getNumberOfSamples(samples) {
|
|
8
|
+
let numberOfSamples = 0;
|
|
9
|
+
for (const sample of samples) {
|
|
10
|
+
if (sample.stackId !== undefined) {
|
|
11
|
+
numberOfSamples++;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
return numberOfSamples;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=getNumberOfSamples.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getNumberOfSamples.js","sourceRoot":"","sources":["../../../../src/domain/profiling/utils/getNumberOfSamples.ts"],"names":[],"mappings":"AAEA;;;;;GAKG;AACH,MAAM,UAAU,kBAAkB,CAAC,OAAyB;IAC1D,IAAI,eAAe,GAAG,CAAC,CAAA;IACvB,KAAK,MAAM,MAAM,IAAI,OAAO,EAAE,CAAC;QAC7B,IAAI,MAAM,CAAC,OAAO,KAAK,SAAS,EAAE,CAAC;YACjC,eAAe,EAAE,CAAA;QACnB,CAAC;IACH,CAAC;IACD,OAAO,eAAe,CAAA;AACxB,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { ClocksState, Duration } from '@datadog/browser-core';
|
|
2
|
+
import type { LifeCycle } from '@datadog/browser-rum-core';
|
|
3
|
+
export declare const VITAL_ID_HISTORY_TIME_OUT_DELAY: number;
|
|
4
|
+
export interface VitalContext {
|
|
5
|
+
id: string;
|
|
6
|
+
label: string;
|
|
7
|
+
duration?: Duration;
|
|
8
|
+
startClocks: ClocksState;
|
|
9
|
+
}
|
|
10
|
+
export declare function createVitalHistory(lifeCycle: LifeCycle): import("@datadog/browser-core").ValueHistory<VitalContext>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { addDuration, createValueHistory, SESSION_TIME_OUT_DELAY } from '@datadog/browser-core';
|
|
2
|
+
export const VITAL_ID_HISTORY_TIME_OUT_DELAY = SESSION_TIME_OUT_DELAY;
|
|
3
|
+
export function createVitalHistory(lifeCycle) {
|
|
4
|
+
const history = createValueHistory({
|
|
5
|
+
expireDelay: VITAL_ID_HISTORY_TIME_OUT_DELAY,
|
|
6
|
+
});
|
|
7
|
+
lifeCycle.subscribe(16 /* LifeCycleEventType.VITAL_STARTED */, (vitalStart) => {
|
|
8
|
+
history.add({
|
|
9
|
+
id: vitalStart.id,
|
|
10
|
+
startClocks: vitalStart.startClocks,
|
|
11
|
+
duration: undefined,
|
|
12
|
+
label: vitalStart.name,
|
|
13
|
+
}, vitalStart.startClocks.relative);
|
|
14
|
+
});
|
|
15
|
+
lifeCycle.subscribe(12 /* LifeCycleEventType.RAW_RUM_EVENT_COLLECTED */, ({ rawRumEvent, startClocks, duration }) => {
|
|
16
|
+
if (rawRumEvent.type === 'vital') {
|
|
17
|
+
const historyEntry = history
|
|
18
|
+
.getEntries(startClocks.relative)
|
|
19
|
+
.find((entry) => entry.value.id === rawRumEvent.vital.id);
|
|
20
|
+
if (historyEntry) {
|
|
21
|
+
historyEntry.value.duration = duration;
|
|
22
|
+
historyEntry.close(addDuration(startClocks.relative, duration));
|
|
23
|
+
}
|
|
24
|
+
else {
|
|
25
|
+
history
|
|
26
|
+
.add({
|
|
27
|
+
id: rawRumEvent.vital.id,
|
|
28
|
+
startClocks,
|
|
29
|
+
duration,
|
|
30
|
+
label: rawRumEvent.vital.name,
|
|
31
|
+
}, startClocks.relative)
|
|
32
|
+
.close(addDuration(startClocks.relative, duration));
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
return history;
|
|
37
|
+
}
|
|
38
|
+
//# sourceMappingURL=vitalHistory.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"vitalHistory.js","sourceRoot":"","sources":["../../../src/domain/profiling/vitalHistory.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,kBAAkB,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAA;AAI/F,MAAM,CAAC,MAAM,+BAA+B,GAAG,sBAAsB,CAAA;AASrE,MAAM,UAAU,kBAAkB,CAAC,SAAoB;IACrD,MAAM,OAAO,GAAG,kBAAkB,CAAe;QAC/C,WAAW,EAAE,+BAA+B;KAC7C,CAAC,CAAA;IAEF,SAAS,CAAC,SAAS,4CAAmC,CAAC,UAAU,EAAE,EAAE;QACnE,OAAO,CAAC,GAAG,CACT;YACE,EAAE,EAAE,UAAU,CAAC,EAAE;YACjB,WAAW,EAAE,UAAU,CAAC,WAAW;YACnC,QAAQ,EAAE,SAAS;YACnB,KAAK,EAAE,UAAU,CAAC,IAAI;SACvB,EACD,UAAU,CAAC,WAAW,CAAC,QAAQ,CAChC,CAAA;IACH,CAAC,CAAC,CAAA;IAEF,SAAS,CAAC,SAAS,sDAA6C,CAAC,EAAE,WAAW,EAAE,WAAW,EAAE,QAAQ,EAAE,EAAE,EAAE;QACzG,IAAI,WAAW,CAAC,IAAI,KAAK,OAAO,EAAE,CAAC;YACjC,MAAM,YAAY,GAAG,OAAO;iBACzB,UAAU,CAAC,WAAW,CAAC,QAAQ,CAAC;iBAChC,IAAI,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE,KAAK,WAAW,CAAC,KAAK,CAAC,EAAE,CAAC,CAAA;YAE3D,IAAI,YAAY,EAAE,CAAC;gBACjB,YAAY,CAAC,KAAK,CAAC,QAAQ,GAAG,QAAS,CAAA;gBACvC,YAAY,CAAC,KAAK,CAAC,WAAW,CAAC,WAAW,CAAC,QAAQ,EAAE,QAAS,CAAC,CAAC,CAAA;YAClE,CAAC;iBAAM,CAAC;gBACN,OAAO;qBACJ,GAAG,CACF;oBACE,EAAE,EAAE,WAAW,CAAC,KAAK,CAAC,EAAE;oBACxB,WAAW;oBACX,QAAQ;oBACR,KAAK,EAAE,WAAW,CAAC,KAAK,CAAC,IAAI;iBAC9B,EACD,WAAW,CAAC,QAAQ,CACrB;qBACA,KAAK,CAAC,WAAW,CAAC,WAAW,CAAC,QAAQ,EAAE,QAAS,CAAC,CAAC,CAAA;YACxD,CAAC;QACH,CAAC;IACH,CAAC,CAAC,CAAA;IAEF,OAAO,OAAO,CAAA;AAChB,CAAC"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { TimeStamp } from '@datadog/browser-core';
|
|
2
|
+
import type { BrowserIncrementalData, BrowserIncrementalSnapshotRecord } from '../../types';
|
|
3
|
+
export declare function assembleIncrementalSnapshot<Data extends BrowserIncrementalData>(source: Data['source'], data: Omit<Data, 'source'>, timestamp?: TimeStamp): BrowserIncrementalSnapshotRecord;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { timeStampNow } from '@datadog/browser-core';
|
|
2
|
+
import { RecordType } from '../../types';
|
|
3
|
+
export function assembleIncrementalSnapshot(source, data, timestamp = timeStampNow()) {
|
|
4
|
+
return {
|
|
5
|
+
data: {
|
|
6
|
+
source,
|
|
7
|
+
...data,
|
|
8
|
+
},
|
|
9
|
+
type: RecordType.IncrementalSnapshot,
|
|
10
|
+
timestamp,
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=assembly.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"assembly.js","sourceRoot":"","sources":["../../../src/domain/record/assembly.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAEpD,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AAExC,MAAM,UAAU,2BAA2B,CACzC,MAAsB,EACtB,IAA0B,EAC1B,YAAuB,YAAY,EAAE;IAErC,OAAO;QACL,IAAI,EAAE;YACJ,MAAM;YACN,GAAG,IAAI;SACA;QACT,IAAI,EAAE,UAAU,CAAC,mBAAmB;QACpC,SAAS;KACV,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export type ElementsScrollPositions = ReturnType<typeof createElementsScrollPositions>;
|
|
2
|
+
export interface ScrollPositions {
|
|
3
|
+
scrollLeft: number;
|
|
4
|
+
scrollTop: number;
|
|
5
|
+
}
|
|
6
|
+
export declare function createElementsScrollPositions(): {
|
|
7
|
+
set(element: Element | Document, scrollPositions: ScrollPositions): void;
|
|
8
|
+
get(element: Element): ScrollPositions | undefined;
|
|
9
|
+
has(element: Element): boolean;
|
|
10
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export function createElementsScrollPositions() {
|
|
2
|
+
const scrollPositionsByElement = new WeakMap();
|
|
3
|
+
return {
|
|
4
|
+
set(element, scrollPositions) {
|
|
5
|
+
if (element === document && !document.scrollingElement) {
|
|
6
|
+
// cf https://drafts.csswg.org/cssom-view/#dom-document-scrollingelement,
|
|
7
|
+
// in some cases scrolling elements can not be defined, we don't support those for now
|
|
8
|
+
return;
|
|
9
|
+
}
|
|
10
|
+
scrollPositionsByElement.set(element === document ? document.scrollingElement : element, scrollPositions);
|
|
11
|
+
},
|
|
12
|
+
get(element) {
|
|
13
|
+
return scrollPositionsByElement.get(element);
|
|
14
|
+
},
|
|
15
|
+
has(element) {
|
|
16
|
+
return scrollPositionsByElement.has(element);
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=elementsScrollPositions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"elementsScrollPositions.js","sourceRoot":"","sources":["../../../src/domain/record/elementsScrollPositions.ts"],"names":[],"mappings":"AAMA,MAAM,UAAU,6BAA6B;IAC3C,MAAM,wBAAwB,GAAG,IAAI,OAAO,EAA4B,CAAA;IACxE,OAAO;QACL,GAAG,CAAC,OAA2B,EAAE,eAAgC;YAC/D,IAAI,OAAO,KAAK,QAAQ,IAAI,CAAC,QAAQ,CAAC,gBAAgB,EAAE,CAAC;gBACvD,yEAAyE;gBACzE,sFAAsF;gBACtF,OAAM;YACR,CAAC;YACD,wBAAwB,CAAC,GAAG,CAC1B,OAAO,KAAK,QAAQ,CAAC,CAAC,CAAC,QAAQ,CAAC,gBAAiB,CAAC,CAAC,CAAE,OAAmB,EACxE,eAAe,CAChB,CAAA;QACH,CAAC;QACD,GAAG,CAAC,OAAgB;YAClB,OAAO,wBAAwB,CAAC,GAAG,CAAC,OAAO,CAAC,CAAA;QAC9C,CAAC;QACD,GAAG,CAAC,OAAgB;YAClB,OAAO,wBAAwB,CAAC,GAAG,CAAC,OAAO,CAAC,CAAA;QAC9C,CAAC;KACF,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { isNodeShadowHost } from '@datadog/browser-rum-core';
|
|
2
|
+
export function isTouchEvent(event) {
|
|
3
|
+
return Boolean(event.changedTouches);
|
|
4
|
+
}
|
|
5
|
+
export function getEventTarget(event) {
|
|
6
|
+
if (event.composed === true && isNodeShadowHost(event.target)) {
|
|
7
|
+
return event.composedPath()[0];
|
|
8
|
+
}
|
|
9
|
+
return event.target;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=eventsUtils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"eventsUtils.js","sourceRoot":"","sources":["../../../src/domain/record/eventsUtils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAA;AAE5D,MAAM,UAAU,YAAY,CAAC,KAA8B;IACzD,OAAO,OAAO,CAAE,KAAoB,CAAC,cAAc,CAAC,CAAA;AACtD,CAAC;AAED,MAAM,UAAU,cAAc,CAAC,KAAY;IACzC,IAAI,KAAK,CAAC,QAAQ,KAAK,IAAI,IAAI,gBAAgB,CAAC,KAAK,CAAC,MAAc,CAAC,EAAE,CAAC;QACtE,OAAO,KAAK,CAAC,YAAY,EAAE,CAAC,CAAC,CAAS,CAAA;IACxC,CAAC;IACD,OAAO,KAAK,CAAC,MAAc,CAAA;AAC7B,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { takeFullSnapshot, takeNodeSnapshot } from './internalApi';
|
|
2
|
+
export { record } from './record';
|
|
3
|
+
export type { SerializationMetric, SerializationStats } from './serialization';
|
|
4
|
+
export { aggregateSerializationStats, createSerializationStats, isFullSnapshotChangeRecordsEnabled, isIncrementalSnapshotChangeRecordsEnabled, serializeNode, } from './serialization';
|
|
5
|
+
export { createElementsScrollPositions } from './elementsScrollPositions';
|
|
6
|
+
export type { ShadowRootsController } from './shadowRootsController';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { takeFullSnapshot, takeNodeSnapshot } from './internalApi';
|
|
2
|
+
export { record } from './record';
|
|
3
|
+
export { aggregateSerializationStats, createSerializationStats, isFullSnapshotChangeRecordsEnabled, isIncrementalSnapshotChangeRecordsEnabled, serializeNode, } from './serialization';
|
|
4
|
+
export { createElementsScrollPositions } from './elementsScrollPositions';
|
|
5
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/domain/record/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAA;AAClE,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AAEjC,OAAO,EACL,2BAA2B,EAC3B,wBAAwB,EACxB,kCAAkC,EAClC,yCAAyC,EACzC,aAAa,GACd,MAAM,iBAAiB,CAAA;AACxB,OAAO,EAAE,6BAA6B,EAAE,MAAM,2BAA2B,CAAA"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { RumConfiguration } from '@datadog/browser-rum-core';
|
|
2
|
+
import type { BrowserRecord, SerializedNodeWithId } from '../../types';
|
|
3
|
+
/**
|
|
4
|
+
* Take a full snapshot of the document, generating the same records that the browser SDK
|
|
5
|
+
* would generate.
|
|
6
|
+
*
|
|
7
|
+
* This is an internal API function. Be sure to update Datadog-internal callers if you
|
|
8
|
+
* change its signature or behavior.
|
|
9
|
+
*/
|
|
10
|
+
export declare function takeFullSnapshot({ configuration, }?: {
|
|
11
|
+
configuration?: Partial<RumConfiguration>;
|
|
12
|
+
}): BrowserRecord[];
|
|
13
|
+
/**
|
|
14
|
+
* Take a snapshot of a DOM node, generating the serialized representation that the
|
|
15
|
+
* browser SDK would generate.
|
|
16
|
+
*
|
|
17
|
+
* This is an internal API function. Be sure to update Datadog-internal callers if you
|
|
18
|
+
* change its signature or behavior.
|
|
19
|
+
*/
|
|
20
|
+
export declare function takeNodeSnapshot(node: Node, { configuration }?: {
|
|
21
|
+
configuration?: Partial<RumConfiguration>;
|
|
22
|
+
}): SerializedNodeWithId | null;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { noop, timeStampNow } from '@datadog/browser-core';
|
|
2
|
+
import { getNodePrivacyLevel, NodePrivacyLevel } from '@datadog/browser-rum-core';
|
|
3
|
+
import { takeFullSnapshot as doTakeFullSnapshot } from './startFullSnapshots';
|
|
4
|
+
import { createRecordingScope } from './recordingScope';
|
|
5
|
+
import { createElementsScrollPositions } from './elementsScrollPositions';
|
|
6
|
+
import { serializeInTransaction, serializeNode } from './serialization';
|
|
7
|
+
/**
|
|
8
|
+
* Take a full snapshot of the document, generating the same records that the browser SDK
|
|
9
|
+
* would generate.
|
|
10
|
+
*
|
|
11
|
+
* This is an internal API function. Be sure to update Datadog-internal callers if you
|
|
12
|
+
* change its signature or behavior.
|
|
13
|
+
*/
|
|
14
|
+
export function takeFullSnapshot({ configuration, } = {}) {
|
|
15
|
+
const records = [];
|
|
16
|
+
const emitRecord = (record) => {
|
|
17
|
+
records.push(record);
|
|
18
|
+
};
|
|
19
|
+
doTakeFullSnapshot(timeStampNow(), 0 /* SerializationKind.INITIAL_FULL_SNAPSHOT */, emitRecord, noop, createTemporaryRecordingScope(configuration));
|
|
20
|
+
return records;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Take a snapshot of a DOM node, generating the serialized representation that the
|
|
24
|
+
* browser SDK would generate.
|
|
25
|
+
*
|
|
26
|
+
* This is an internal API function. Be sure to update Datadog-internal callers if you
|
|
27
|
+
* change its signature or behavior.
|
|
28
|
+
*/
|
|
29
|
+
export function takeNodeSnapshot(node, { configuration } = {}) {
|
|
30
|
+
let serializedNode = null;
|
|
31
|
+
serializeInTransaction(0 /* SerializationKind.INITIAL_FULL_SNAPSHOT */, noop, noop, createTemporaryRecordingScope(configuration), (transaction) => {
|
|
32
|
+
const privacyLevel = getNodePrivacyLevel(node, transaction.scope.configuration.defaultPrivacyLevel);
|
|
33
|
+
if (privacyLevel === NodePrivacyLevel.HIDDEN || privacyLevel === NodePrivacyLevel.IGNORE) {
|
|
34
|
+
return;
|
|
35
|
+
}
|
|
36
|
+
serializedNode = serializeNode(node, privacyLevel, transaction);
|
|
37
|
+
});
|
|
38
|
+
return serializedNode;
|
|
39
|
+
}
|
|
40
|
+
function createTemporaryRecordingScope(configuration) {
|
|
41
|
+
return createRecordingScope({
|
|
42
|
+
defaultPrivacyLevel: NodePrivacyLevel.ALLOW,
|
|
43
|
+
...configuration,
|
|
44
|
+
}, createElementsScrollPositions(), {
|
|
45
|
+
addShadowRoot: noop,
|
|
46
|
+
removeShadowRoot: noop,
|
|
47
|
+
flush: noop,
|
|
48
|
+
stop: noop,
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
//# sourceMappingURL=internalApi.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"internalApi.js","sourceRoot":"","sources":["../../../src/domain/record/internalApi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAE1D,OAAO,EAAE,mBAAmB,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAA;AAEjF,OAAO,EAAE,gBAAgB,IAAI,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AAG7E,OAAO,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAA;AACvD,OAAO,EAAE,6BAA6B,EAAE,MAAM,2BAA2B,CAAA;AAGzE,OAAO,EAAqB,sBAAsB,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAE1F;;;;;;GAMG;AACH,MAAM,UAAU,gBAAgB,CAAC,EAC/B,aAAa,MACoC,EAAE;IACnD,MAAM,OAAO,GAAoB,EAAE,CAAA;IACnC,MAAM,UAAU,GAAuB,CAAC,MAAqB,EAAE,EAAE;QAC/D,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IACtB,CAAC,CAAA;IAED,kBAAkB,CAChB,YAAY,EAAE,mDAEd,UAAU,EACV,IAAI,EACJ,6BAA6B,CAAC,aAAa,CAAC,CAC7C,CAAA;IAED,OAAO,OAAO,CAAA;AAChB,CAAC;AAED;;;;;;GAMG;AACH,MAAM,UAAU,gBAAgB,CAC9B,IAAU,EACV,EAAE,aAAa,KAAoD,EAAE;IAErE,IAAI,cAAc,GAAgC,IAAI,CAAA;IAEtD,sBAAsB,kDAEpB,IAAI,EACJ,IAAI,EACJ,6BAA6B,CAAC,aAAa,CAAC,EAC5C,CAAC,WAAqC,EAAQ,EAAE;QAC9C,MAAM,YAAY,GAAG,mBAAmB,CAAC,IAAI,EAAE,WAAW,CAAC,KAAK,CAAC,aAAa,CAAC,mBAAmB,CAAC,CAAA;QACnG,IAAI,YAAY,KAAK,gBAAgB,CAAC,MAAM,IAAI,YAAY,KAAK,gBAAgB,CAAC,MAAM,EAAE,CAAC;YACzF,OAAM;QACR,CAAC;QACD,cAAc,GAAG,aAAa,CAAC,IAAI,EAAE,YAAY,EAAE,WAAW,CAAC,CAAA;IACjE,CAAC,CACF,CAAA;IAED,OAAO,cAAc,CAAA;AACvB,CAAC;AAED,SAAS,6BAA6B,CAAC,aAAyC;IAC9E,OAAO,oBAAoB,CACzB;QACE,mBAAmB,EAAE,gBAAgB,CAAC,KAAK;QAC3C,GAAG,aAAa;KACG,EACrB,6BAA6B,EAAE,EAC/B;QACE,aAAa,EAAE,IAAI;QACnB,gBAAgB,EAAE,IAAI;QACtB,KAAK,EAAE,IAAI;QACX,IAAI,EAAE,IAAI;KACc,CAC3B,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
export type EventId = number & {
|
|
2
|
+
__brand: 'EventId';
|
|
3
|
+
};
|
|
4
|
+
export type EventIds = ItemIds<Event, EventId>;
|
|
5
|
+
export declare const enum EventIdConstants {
|
|
6
|
+
FIRST_ID = 1
|
|
7
|
+
}
|
|
8
|
+
export declare function createEventIds(): EventIds;
|
|
9
|
+
export type NodeId = number & {
|
|
10
|
+
__brand: 'NodeId';
|
|
11
|
+
};
|
|
12
|
+
export type NodeIds = ItemIds<Node, NodeId>;
|
|
13
|
+
export declare const enum NodeIdConstants {
|
|
14
|
+
FIRST_ID = 0
|
|
15
|
+
}
|
|
16
|
+
export declare function createNodeIds(): NodeIds;
|
|
17
|
+
export type StringId = number & {
|
|
18
|
+
__brand: 'StringId';
|
|
19
|
+
};
|
|
20
|
+
export type StringIds = ItemIds<string, StringId>;
|
|
21
|
+
export declare const enum StringIdConstants {
|
|
22
|
+
FIRST_ID = 0
|
|
23
|
+
}
|
|
24
|
+
export declare function createStringIds(): StringIds;
|
|
25
|
+
export type StyleSheetId = number & {
|
|
26
|
+
__brand: 'StyleSheetId';
|
|
27
|
+
};
|
|
28
|
+
export type StyleSheetIds = ItemIds<CSSStyleSheet, StyleSheetId>;
|
|
29
|
+
export declare const enum StyleSheetIdConstants {
|
|
30
|
+
FIRST_ID = 0
|
|
31
|
+
}
|
|
32
|
+
export declare function createStyleSheetIds(): StyleSheetIds;
|
|
33
|
+
export interface ItemIds<ItemType, ItemId extends number> {
|
|
34
|
+
clear(this: void): void;
|
|
35
|
+
delete(this: void, item: ItemType): void;
|
|
36
|
+
get(this: void, item: ItemType): ItemId | undefined;
|
|
37
|
+
getOrInsert(this: void, item: ItemType): ItemId;
|
|
38
|
+
get nextId(): ItemId;
|
|
39
|
+
get size(): number;
|
|
40
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
export function createEventIds() {
|
|
2
|
+
return createWeakIdMap(1 /* EventIdConstants.FIRST_ID */);
|
|
3
|
+
}
|
|
4
|
+
export function createNodeIds() {
|
|
5
|
+
return createWeakIdMap(0 /* NodeIdConstants.FIRST_ID */);
|
|
6
|
+
}
|
|
7
|
+
export function createStringIds() {
|
|
8
|
+
return createIdMap(0 /* StringIdConstants.FIRST_ID */);
|
|
9
|
+
}
|
|
10
|
+
export function createStyleSheetIds() {
|
|
11
|
+
return createWeakIdMap(0 /* StyleSheetIdConstants.FIRST_ID */);
|
|
12
|
+
}
|
|
13
|
+
function createIdMap(firstId) {
|
|
14
|
+
return createItemIds(() => new Map(), firstId);
|
|
15
|
+
}
|
|
16
|
+
function createWeakIdMap(firstId) {
|
|
17
|
+
return createItemIds(() => new WeakMap(), firstId);
|
|
18
|
+
}
|
|
19
|
+
function createItemIds(createMap, firstId) {
|
|
20
|
+
let map = createMap();
|
|
21
|
+
let nextId = firstId;
|
|
22
|
+
const get = (object) => map.get(object);
|
|
23
|
+
return {
|
|
24
|
+
clear() {
|
|
25
|
+
if (nextId === firstId) {
|
|
26
|
+
return;
|
|
27
|
+
}
|
|
28
|
+
map = createMap();
|
|
29
|
+
nextId = firstId;
|
|
30
|
+
},
|
|
31
|
+
delete(object) {
|
|
32
|
+
map.delete(object);
|
|
33
|
+
},
|
|
34
|
+
get,
|
|
35
|
+
getOrInsert(object) {
|
|
36
|
+
// Try to reuse any existing id.
|
|
37
|
+
let id = get(object);
|
|
38
|
+
if (id === undefined) {
|
|
39
|
+
id = nextId++;
|
|
40
|
+
map.set(object, id);
|
|
41
|
+
}
|
|
42
|
+
return id;
|
|
43
|
+
},
|
|
44
|
+
get nextId() {
|
|
45
|
+
return nextId;
|
|
46
|
+
},
|
|
47
|
+
get size() {
|
|
48
|
+
return nextId - firstId;
|
|
49
|
+
},
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
//# sourceMappingURL=itemIds.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"itemIds.js","sourceRoot":"","sources":["../../../src/domain/record/itemIds.ts"],"names":[],"mappings":"AAKA,MAAM,UAAU,cAAc;IAC5B,OAAO,eAAe,CAAC,iCAAoC,CAAC,CAAA;AAC9D,CAAC;AAOD,MAAM,UAAU,aAAa;IAC3B,OAAO,eAAe,CAAC,gCAAkC,CAAC,CAAA;AAC5D,CAAC;AAOD,MAAM,UAAU,eAAe;IAC7B,OAAO,WAAW,CAAC,kCAAsC,CAAC,CAAA;AAC5D,CAAC;AAOD,MAAM,UAAU,mBAAmB;IACjC,OAAO,eAAe,CAAC,sCAA8C,CAAC,CAAA;AACxE,CAAC;AAWD,SAAS,WAAW,CAAkC,OAAe;IACnE,OAAO,aAAa,CAAC,GAAG,EAAE,CAAC,IAAI,GAAG,EAAoB,EAAE,OAAO,CAAC,CAAA;AAClE,CAAC;AAED,SAAS,eAAe,CAAiD,OAAe;IACtF,OAAO,aAAa,CAAC,GAAG,EAAE,CAAC,IAAI,OAAO,EAAoB,EAAE,OAAO,CAAC,CAAA;AACtE,CAAC;AAQD,SAAS,aAAa,CACpB,SAA0C,EAC1C,OAAe;IAEf,IAAI,GAAG,GAAG,SAAS,EAAE,CAAA;IACrB,IAAI,MAAM,GAAG,OAAO,CAAA;IAEpB,MAAM,GAAG,GAAG,CAAC,MAAgB,EAAsB,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;IAErE,OAAO;QACL,KAAK;YACH,IAAI,MAAM,KAAK,OAAO,EAAE,CAAC;gBACvB,OAAM;YACR,CAAC;YACD,GAAG,GAAG,SAAS,EAAE,CAAA;YACjB,MAAM,GAAG,OAAO,CAAA;QAClB,CAAC;QACD,MAAM,CAAC,MAAgB;YACrB,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,CAAA;QACpB,CAAC;QACD,GAAG;QACH,WAAW,CAAC,MAAgB;YAC1B,gCAAgC;YAChC,IAAI,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,CAAA;YACpB,IAAI,EAAE,KAAK,SAAS,EAAE,CAAC;gBACrB,EAAE,GAAG,MAAM,EAAY,CAAA;gBACvB,GAAG,CAAC,GAAG,CAAC,MAAM,EAAE,EAAE,CAAC,CAAA;YACrB,CAAC;YACD,OAAO,EAAE,CAAA;QACX,CAAC;QACD,IAAI,MAAM;YACR,OAAO,MAAM,CAAA;QACf,CAAC;QACD,IAAI,IAAI;YACN,OAAO,MAAM,GAAG,OAAO,CAAA;QACzB,CAAC;KACF,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { RumMutationRecord } from '@datadog/browser-rum-core';
|
|
2
|
+
/**
|
|
3
|
+
* Minimum duration to wait before processing mutations. This is used to batch mutations together
|
|
4
|
+
* and be able to deduplicate them to save processing time and bandwidth.
|
|
5
|
+
* 16ms is the duration of a frame at 60fps that ensure fluid UI.
|
|
6
|
+
*/
|
|
7
|
+
export declare const MUTATION_PROCESS_MIN_DELAY = 16;
|
|
8
|
+
export declare function createMutationBatch(processMutationBatch: (mutations: RumMutationRecord[]) => void): {
|
|
9
|
+
addMutations: (mutations: RumMutationRecord[]) => void;
|
|
10
|
+
flush: () => void;
|
|
11
|
+
stop: () => void;
|
|
12
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { noop, throttle, requestIdleCallback } from '@datadog/browser-core';
|
|
2
|
+
/**
|
|
3
|
+
* Maximum duration to wait before processing mutations. If the browser is idle, mutations will be
|
|
4
|
+
* processed more quickly. If the browser is busy executing small tasks (ex: rendering frames), the
|
|
5
|
+
* mutations will wait MUTATION_PROCESS_MAX_DELAY milliseconds before being processed. If the
|
|
6
|
+
* browser is busy executing a longer task, mutations will be processed after this task.
|
|
7
|
+
*/
|
|
8
|
+
const MUTATION_PROCESS_MAX_DELAY = 100;
|
|
9
|
+
/**
|
|
10
|
+
* Minimum duration to wait before processing mutations. This is used to batch mutations together
|
|
11
|
+
* and be able to deduplicate them to save processing time and bandwidth.
|
|
12
|
+
* 16ms is the duration of a frame at 60fps that ensure fluid UI.
|
|
13
|
+
*/
|
|
14
|
+
export const MUTATION_PROCESS_MIN_DELAY = 16;
|
|
15
|
+
export function createMutationBatch(processMutationBatch) {
|
|
16
|
+
let cancelScheduledFlush = noop;
|
|
17
|
+
let pendingMutations = [];
|
|
18
|
+
function flush() {
|
|
19
|
+
cancelScheduledFlush();
|
|
20
|
+
processMutationBatch(pendingMutations);
|
|
21
|
+
pendingMutations = [];
|
|
22
|
+
}
|
|
23
|
+
const { throttled: throttledFlush, cancel: cancelThrottle } = throttle(flush, MUTATION_PROCESS_MIN_DELAY, {
|
|
24
|
+
leading: false,
|
|
25
|
+
});
|
|
26
|
+
return {
|
|
27
|
+
addMutations: (mutations) => {
|
|
28
|
+
if (pendingMutations.length === 0) {
|
|
29
|
+
cancelScheduledFlush = requestIdleCallback(throttledFlush, { timeout: MUTATION_PROCESS_MAX_DELAY });
|
|
30
|
+
}
|
|
31
|
+
pendingMutations.push(...mutations);
|
|
32
|
+
},
|
|
33
|
+
flush,
|
|
34
|
+
stop: () => {
|
|
35
|
+
cancelScheduledFlush();
|
|
36
|
+
cancelThrottle();
|
|
37
|
+
},
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=mutationBatch.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mutationBatch.js","sourceRoot":"","sources":["../../../src/domain/record/mutationBatch.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAG3E;;;;;GAKG;AACH,MAAM,0BAA0B,GAAG,GAAG,CAAA;AACtC;;;;GAIG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAG,EAAE,CAAA;AAE5C,MAAM,UAAU,mBAAmB,CAAC,oBAA8D;IAChG,IAAI,oBAAoB,GAAG,IAAI,CAAA;IAC/B,IAAI,gBAAgB,GAAwB,EAAE,CAAA;IAE9C,SAAS,KAAK;QACZ,oBAAoB,EAAE,CAAA;QACtB,oBAAoB,CAAC,gBAAgB,CAAC,CAAA;QACtC,gBAAgB,GAAG,EAAE,CAAA;IACvB,CAAC;IAED,MAAM,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,EAAE,cAAc,EAAE,GAAG,QAAQ,CAAC,KAAK,EAAE,0BAA0B,EAAE;QACxG,OAAO,EAAE,KAAK;KACf,CAAC,CAAA;IAEF,OAAO;QACL,YAAY,EAAE,CAAC,SAA8B,EAAE,EAAE;YAC/C,IAAI,gBAAgB,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;gBAClC,oBAAoB,GAAG,mBAAmB,CAAC,cAAc,EAAE,EAAE,OAAO,EAAE,0BAA0B,EAAE,CAAC,CAAA;YACrG,CAAC;YACD,gBAAgB,CAAC,IAAI,CAAC,GAAG,SAAS,CAAC,CAAA;QACrC,CAAC;QAED,KAAK;QAEL,IAAI,EAAE,GAAG,EAAE;YACT,oBAAoB,EAAE,CAAA;YACtB,cAAc,EAAE,CAAA;QAClB,CAAC;KACF,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { LifeCycle, RumConfiguration, ViewHistory } from '@datadog/browser-rum-core';
|
|
2
|
+
import type { ShadowRootsController } from './shadowRootsController';
|
|
3
|
+
import type { EmitRecordCallback, EmitStatsCallback } from './record.types';
|
|
4
|
+
export interface RecordOptions {
|
|
5
|
+
emitRecord: EmitRecordCallback;
|
|
6
|
+
emitStats: EmitStatsCallback;
|
|
7
|
+
configuration: RumConfiguration;
|
|
8
|
+
lifeCycle: LifeCycle;
|
|
9
|
+
viewHistory: ViewHistory;
|
|
10
|
+
}
|
|
11
|
+
export interface RecordAPI {
|
|
12
|
+
stop: () => void;
|
|
13
|
+
flushMutations: () => void;
|
|
14
|
+
shadowRootsController: ShadowRootsController;
|
|
15
|
+
}
|
|
16
|
+
export declare function record(options: RecordOptions): RecordAPI;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { sendToExtension } from '@datadog/browser-core';
|
|
2
|
+
import * as replayStats from '../replayStats';
|
|
3
|
+
import { trackFocus, trackFrustration, trackInput, trackMediaInteraction, trackMouseInteraction, trackMove, trackMutation, trackScroll, trackStyleSheet, trackViewEnd, trackViewportResize, trackVisualViewportResize, } from './trackers';
|
|
4
|
+
import { createElementsScrollPositions } from './elementsScrollPositions';
|
|
5
|
+
import { initShadowRootsController } from './shadowRootsController';
|
|
6
|
+
import { startFullSnapshots } from './startFullSnapshots';
|
|
7
|
+
import { createRecordingScope } from './recordingScope';
|
|
8
|
+
export function record(options) {
|
|
9
|
+
const { emitRecord, emitStats, configuration, lifeCycle } = options;
|
|
10
|
+
// runtime checks for user options
|
|
11
|
+
if (!emitRecord || !emitStats) {
|
|
12
|
+
throw new Error('emit functions are required');
|
|
13
|
+
}
|
|
14
|
+
const processRecord = (record) => {
|
|
15
|
+
emitRecord(record);
|
|
16
|
+
sendToExtension('record', { record });
|
|
17
|
+
const view = options.viewHistory.findView();
|
|
18
|
+
replayStats.addRecord(view.id);
|
|
19
|
+
};
|
|
20
|
+
const shadowRootsController = initShadowRootsController(processRecord, emitStats);
|
|
21
|
+
const scope = createRecordingScope(configuration, createElementsScrollPositions(), shadowRootsController);
|
|
22
|
+
const { stop: stopFullSnapshots } = startFullSnapshots(lifeCycle, processRecord, emitStats, flushMutations, scope);
|
|
23
|
+
function flushMutations() {
|
|
24
|
+
shadowRootsController.flush();
|
|
25
|
+
mutationTracker.flush();
|
|
26
|
+
}
|
|
27
|
+
const mutationTracker = trackMutation(document, processRecord, emitStats, scope);
|
|
28
|
+
const trackers = [
|
|
29
|
+
mutationTracker,
|
|
30
|
+
trackMove(processRecord, scope),
|
|
31
|
+
trackMouseInteraction(processRecord, scope),
|
|
32
|
+
trackScroll(document, processRecord, scope),
|
|
33
|
+
trackViewportResize(processRecord, scope),
|
|
34
|
+
trackInput(document, processRecord, scope),
|
|
35
|
+
trackMediaInteraction(processRecord, scope),
|
|
36
|
+
trackStyleSheet(processRecord, scope),
|
|
37
|
+
trackFocus(processRecord, scope),
|
|
38
|
+
trackVisualViewportResize(processRecord, scope),
|
|
39
|
+
trackFrustration(lifeCycle, processRecord, scope),
|
|
40
|
+
trackViewEnd(lifeCycle, processRecord, flushMutations),
|
|
41
|
+
];
|
|
42
|
+
return {
|
|
43
|
+
stop: () => {
|
|
44
|
+
shadowRootsController.stop();
|
|
45
|
+
trackers.forEach((tracker) => tracker.stop());
|
|
46
|
+
stopFullSnapshots();
|
|
47
|
+
},
|
|
48
|
+
flushMutations,
|
|
49
|
+
shadowRootsController,
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
//# sourceMappingURL=record.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"record.js","sourceRoot":"","sources":["../../../src/domain/record/record.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAA;AAEvD,OAAO,KAAK,WAAW,MAAM,gBAAgB,CAAA;AAG7C,OAAO,EACL,UAAU,EACV,gBAAgB,EAChB,UAAU,EACV,qBAAqB,EACrB,qBAAqB,EACrB,SAAS,EACT,aAAa,EACb,WAAW,EACX,eAAe,EACf,YAAY,EACZ,mBAAmB,EACnB,yBAAyB,GAC1B,MAAM,YAAY,CAAA;AACnB,OAAO,EAAE,6BAA6B,EAAE,MAAM,2BAA2B,CAAA;AAEzE,OAAO,EAAE,yBAAyB,EAAE,MAAM,yBAAyB,CAAA;AACnE,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AAEzD,OAAO,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAA;AAgBvD,MAAM,UAAU,MAAM,CAAC,OAAsB;IAC3C,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,aAAa,EAAE,SAAS,EAAE,GAAG,OAAO,CAAA;IACnE,kCAAkC;IAClC,IAAI,CAAC,UAAU,IAAI,CAAC,SAAS,EAAE,CAAC;QAC9B,MAAM,IAAI,KAAK,CAAC,6BAA6B,CAAC,CAAA;IAChD,CAAC;IAED,MAAM,aAAa,GAAuB,CAAC,MAAqB,EAAE,EAAE;QAClE,UAAU,CAAC,MAAM,CAAC,CAAA;QAClB,eAAe,CAAC,QAAQ,EAAE,EAAE,MAAM,EAAE,CAAC,CAAA;QACrC,MAAM,IAAI,GAAG,OAAO,CAAC,WAAW,CAAC,QAAQ,EAAG,CAAA;QAC5C,WAAW,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC,CAAA;IAChC,CAAC,CAAA;IAED,MAAM,qBAAqB,GAAG,yBAAyB,CAAC,aAAa,EAAE,SAAS,CAAC,CAAA;IACjF,MAAM,KAAK,GAAG,oBAAoB,CAAC,aAAa,EAAE,6BAA6B,EAAE,EAAE,qBAAqB,CAAC,CAAA;IAEzG,MAAM,EAAE,IAAI,EAAE,iBAAiB,EAAE,GAAG,kBAAkB,CAAC,SAAS,EAAE,aAAa,EAAE,SAAS,EAAE,cAAc,EAAE,KAAK,CAAC,CAAA;IAElH,SAAS,cAAc;QACrB,qBAAqB,CAAC,KAAK,EAAE,CAAA;QAC7B,eAAe,CAAC,KAAK,EAAE,CAAA;IACzB,CAAC;IAED,MAAM,eAAe,GAAG,aAAa,CAAC,QAAQ,EAAE,aAAa,EAAE,SAAS,EAAE,KAAK,CAAC,CAAA;IAChF,MAAM,QAAQ,GAAc;QAC1B,eAAe;QACf,SAAS,CAAC,aAAa,EAAE,KAAK,CAAC;QAC/B,qBAAqB,CAAC,aAAa,EAAE,KAAK,CAAC;QAC3C,WAAW,CAAC,QAAQ,EAAE,aAAa,EAAE,KAAK,CAAC;QAC3C,mBAAmB,CAAC,aAAa,EAAE,KAAK,CAAC;QACzC,UAAU,CAAC,QAAQ,EAAE,aAAa,EAAE,KAAK,CAAC;QAC1C,qBAAqB,CAAC,aAAa,EAAE,KAAK,CAAC;QAC3C,eAAe,CAAC,aAAa,EAAE,KAAK,CAAC;QACrC,UAAU,CAAC,aAAa,EAAE,KAAK,CAAC;QAChC,yBAAyB,CAAC,aAAa,EAAE,KAAK,CAAC;QAC/C,gBAAgB,CAAC,SAAS,EAAE,aAAa,EAAE,KAAK,CAAC;QACjD,YAAY,CAAC,SAAS,EAAE,aAAa,EAAE,cAAc,CAAC;KACvD,CAAA;IAED,OAAO;QACL,IAAI,EAAE,GAAG,EAAE;YACT,qBAAqB,CAAC,IAAI,EAAE,CAAA;YAC5B,QAAQ,CAAC,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,EAAE,CAAC,CAAA;YAC7C,iBAAiB,EAAE,CAAA;QACrB,CAAC;QACD,cAAc;QACd,qBAAqB;KACtB,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { RumMutationRecord } from '@datadog/browser-rum-core';
|
|
2
|
+
import type { TimeStamp } from '@datadog/browser-core';
|
|
3
|
+
import type { BrowserFullSnapshotRecord, BrowserIncrementalSnapshotRecord, BrowserRecord } from '../../types';
|
|
4
|
+
import type { SerializationKind, SerializationStats } from './serialization';
|
|
5
|
+
export type EmitRecordCallback<Record extends BrowserRecord = BrowserRecord> = (record: Record) => void;
|
|
6
|
+
export type EmitStatsCallback = (stats: SerializationStats) => void;
|
|
7
|
+
export type SerializeEvent = {
|
|
8
|
+
type: 'full';
|
|
9
|
+
kind: SerializationKind;
|
|
10
|
+
target: Document;
|
|
11
|
+
timestamp: TimeStamp;
|
|
12
|
+
v1: BrowserFullSnapshotRecord;
|
|
13
|
+
} | {
|
|
14
|
+
type: 'incremental';
|
|
15
|
+
target: RumMutationRecord[];
|
|
16
|
+
timestamp: TimeStamp;
|
|
17
|
+
v1: BrowserIncrementalSnapshotRecord;
|
|
18
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"record.types.js","sourceRoot":"","sources":["../../../src/domain/record/record.types.ts"],"names":[],"mappings":""}
|