@depup/datadog__browser-rum 6.31.0-depup.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +25 -0
- package/bundle/chunks/profiler-9f1c1103f1ef0aa98257-datadog-rum.js +1 -0
- package/bundle/chunks/recorder-926b641c6ef51d09a378-datadog-rum.js +1 -0
- package/bundle/datadog-rum.js +1 -0
- package/changes.json +5 -0
- package/cjs/boot/isBrowserSupported.d.ts +4 -0
- package/cjs/boot/isBrowserSupported.js +17 -0
- package/cjs/boot/isBrowserSupported.js.map +1 -0
- package/cjs/boot/lazyLoadProfiler.d.ts +3 -0
- package/cjs/boot/lazyLoadProfiler.js +56 -0
- package/cjs/boot/lazyLoadProfiler.js.map +1 -0
- package/cjs/boot/lazyLoadRecorder.d.ts +3 -0
- package/cjs/boot/lazyLoadRecorder.js +56 -0
- package/cjs/boot/lazyLoadRecorder.js.map +1 -0
- package/cjs/boot/postStartStrategy.d.ts +33 -0
- package/cjs/boot/postStartStrategy.js +98 -0
- package/cjs/boot/postStartStrategy.js.map +1 -0
- package/cjs/boot/preStartStrategy.d.ts +6 -0
- package/cjs/boot/preStartStrategy.js +24 -0
- package/cjs/boot/preStartStrategy.js.map +1 -0
- package/cjs/boot/profilerApi.d.ts +2 -0
- package/cjs/boot/profilerApi.js +52 -0
- package/cjs/boot/profilerApi.js.map +1 -0
- package/cjs/boot/recorderApi.d.ts +3 -0
- package/cjs/boot/recorderApi.js +71 -0
- package/cjs/boot/recorderApi.js.map +1 -0
- package/cjs/boot/startRecording.d.ts +6 -0
- package/cjs/boot/startRecording.js +45 -0
- package/cjs/boot/startRecording.js.map +1 -0
- package/cjs/domain/deflate/deflateEncoder.d.ts +3 -0
- package/cjs/domain/deflate/deflateEncoder.js +110 -0
- package/cjs/domain/deflate/deflateEncoder.js.map +1 -0
- package/cjs/domain/deflate/deflateWorker.d.ts +29 -0
- package/cjs/domain/deflate/deflateWorker.js +105 -0
- package/cjs/domain/deflate/deflateWorker.js.map +1 -0
- package/cjs/domain/deflate/index.d.ts +3 -0
- package/cjs/domain/deflate/index.js +11 -0
- package/cjs/domain/deflate/index.js.map +1 -0
- package/cjs/domain/getSessionReplayLink.d.ts +2 -0
- package/cjs/domain/getSessionReplayLink.js +35 -0
- package/cjs/domain/getSessionReplayLink.js.map +1 -0
- package/cjs/domain/profiling/actionHistory.d.ts +10 -0
- package/cjs/domain/profiling/actionHistory.js +49 -0
- package/cjs/domain/profiling/actionHistory.js.map +1 -0
- package/cjs/domain/profiling/longTaskHistory.d.ts +11 -0
- package/cjs/domain/profiling/longTaskHistory.js +28 -0
- package/cjs/domain/profiling/longTaskHistory.js.map +1 -0
- package/cjs/domain/profiling/profiler.d.ts +7 -0
- package/cjs/domain/profiling/profiler.js +267 -0
- package/cjs/domain/profiling/profiler.js.map +1 -0
- package/cjs/domain/profiling/profilingContext.d.ts +6 -0
- package/cjs/domain/profiling/profilingContext.js +31 -0
- package/cjs/domain/profiling/profilingContext.js.map +1 -0
- package/cjs/domain/profiling/profilingSupported.d.ts +1 -0
- package/cjs/domain/profiling/profilingSupported.js +11 -0
- package/cjs/domain/profiling/profilingSupported.js.map +1 -0
- package/cjs/domain/profiling/test-utils/mockedTrace.d.ts +3 -0
- package/cjs/domain/profiling/test-utils/mockedTrace.js +57 -0
- package/cjs/domain/profiling/test-utils/mockedTrace.js.map +1 -0
- package/cjs/domain/profiling/transport/assembly.d.ts +7 -0
- package/cjs/domain/profiling/transport/assembly.js +45 -0
- package/cjs/domain/profiling/transport/assembly.js.map +1 -0
- package/cjs/domain/profiling/transport/buildProfileEventAttributes.d.ts +33 -0
- package/cjs/domain/profiling/transport/buildProfileEventAttributes.js +63 -0
- package/cjs/domain/profiling/transport/buildProfileEventAttributes.js.map +1 -0
- package/cjs/domain/profiling/types/index.d.ts +2 -0
- package/cjs/domain/profiling/types/index.js +3 -0
- package/cjs/domain/profiling/types/index.js.map +1 -0
- package/cjs/domain/profiling/types/profilerApi.types.d.ts +58 -0
- package/cjs/domain/profiling/types/profilerApi.types.js +5 -0
- package/cjs/domain/profiling/types/profilerApi.types.js.map +1 -0
- package/cjs/domain/profiling/types/rumProfiler.types.d.ts +55 -0
- package/cjs/domain/profiling/types/rumProfiler.types.js +3 -0
- package/cjs/domain/profiling/types/rumProfiler.types.js.map +1 -0
- package/cjs/domain/profiling/utils/getCustomOrDefaultViewName.d.ts +1 -0
- package/cjs/domain/profiling/utils/getCustomOrDefaultViewName.js +7 -0
- package/cjs/domain/profiling/utils/getCustomOrDefaultViewName.js.map +1 -0
- package/cjs/domain/profiling/utils/getDefaultViewName.d.ts +1 -0
- package/cjs/domain/profiling/utils/getDefaultViewName.js +14 -0
- package/cjs/domain/profiling/utils/getDefaultViewName.js.map +1 -0
- package/cjs/domain/profiling/utils/getNumberOfSamples.d.ts +8 -0
- package/cjs/domain/profiling/utils/getNumberOfSamples.js +19 -0
- package/cjs/domain/profiling/utils/getNumberOfSamples.js.map +1 -0
- package/cjs/domain/profiling/vitalHistory.d.ts +10 -0
- package/cjs/domain/profiling/vitalHistory.js +42 -0
- package/cjs/domain/profiling/vitalHistory.js.map +1 -0
- package/cjs/domain/record/assembly.d.ts +3 -0
- package/cjs/domain/record/assembly.js +16 -0
- package/cjs/domain/record/assembly.js.map +1 -0
- package/cjs/domain/record/elementsScrollPositions.d.ts +10 -0
- package/cjs/domain/record/elementsScrollPositions.js +23 -0
- package/cjs/domain/record/elementsScrollPositions.js.map +1 -0
- package/cjs/domain/record/eventsUtils.d.ts +2 -0
- package/cjs/domain/record/eventsUtils.js +15 -0
- package/cjs/domain/record/eventsUtils.js.map +1 -0
- package/cjs/domain/record/index.d.ts +6 -0
- package/cjs/domain/record/index.js +17 -0
- package/cjs/domain/record/index.js.map +1 -0
- package/cjs/domain/record/internalApi.d.ts +22 -0
- package/cjs/domain/record/internalApi.js +55 -0
- package/cjs/domain/record/internalApi.js.map +1 -0
- package/cjs/domain/record/itemIds.d.ts +40 -0
- package/cjs/domain/record/itemIds.js +58 -0
- package/cjs/domain/record/itemIds.js.map +1 -0
- package/cjs/domain/record/mutationBatch.d.ts +12 -0
- package/cjs/domain/record/mutationBatch.js +44 -0
- package/cjs/domain/record/mutationBatch.js.map +1 -0
- package/cjs/domain/record/record.d.ts +16 -0
- package/cjs/domain/record/record.js +88 -0
- package/cjs/domain/record/record.js.map +1 -0
- package/cjs/domain/record/record.types.d.ts +18 -0
- package/cjs/domain/record/record.types.js +3 -0
- package/cjs/domain/record/record.types.js.map +1 -0
- package/cjs/domain/record/recordingScope.d.ts +24 -0
- package/cjs/domain/record/recordingScope.js +29 -0
- package/cjs/domain/record/recordingScope.js.map +1 -0
- package/cjs/domain/record/serialization/changeEncoder.d.ts +22 -0
- package/cjs/domain/record/serialization/changeEncoder.js +59 -0
- package/cjs/domain/record/serialization/changeEncoder.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/changeConverter.d.ts +10 -0
- package/cjs/domain/record/serialization/conversions/changeConverter.js +216 -0
- package/cjs/domain/record/serialization/conversions/changeConverter.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/changeDecoder.d.ts +16 -0
- package/cjs/domain/record/serialization/conversions/changeDecoder.js +137 -0
- package/cjs/domain/record/serialization/conversions/changeDecoder.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/index.d.ts +7 -0
- package/cjs/domain/record/serialization/conversions/index.js +11 -0
- package/cjs/domain/record/serialization/conversions/index.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/mutationLog.d.ts +15 -0
- package/cjs/domain/record/serialization/conversions/mutationLog.js +36 -0
- package/cjs/domain/record/serialization/conversions/mutationLog.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/nodeIdRemapper.d.ts +10 -0
- package/cjs/domain/record/serialization/conversions/nodeIdRemapper.js +53 -0
- package/cjs/domain/record/serialization/conversions/nodeIdRemapper.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/renderOptions.d.ts +6 -0
- package/cjs/domain/record/serialization/conversions/renderOptions.js +12 -0
- package/cjs/domain/record/serialization/conversions/renderOptions.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/stringTable.d.ts +5 -0
- package/cjs/domain/record/serialization/conversions/stringTable.js +22 -0
- package/cjs/domain/record/serialization/conversions/stringTable.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/vDocument.d.ts +23 -0
- package/cjs/domain/record/serialization/conversions/vDocument.js +176 -0
- package/cjs/domain/record/serialization/conversions/vDocument.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/vNode.d.ts +66 -0
- package/cjs/domain/record/serialization/conversions/vNode.js +285 -0
- package/cjs/domain/record/serialization/conversions/vNode.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/vStyleSheet.d.ts +16 -0
- package/cjs/domain/record/serialization/conversions/vStyleSheet.js +29 -0
- package/cjs/domain/record/serialization/conversions/vStyleSheet.js.map +1 -0
- package/cjs/domain/record/serialization/experimentalFeatures.d.ts +2 -0
- package/cjs/domain/record/serialization/experimentalFeatures.js +16 -0
- package/cjs/domain/record/serialization/experimentalFeatures.js.map +1 -0
- package/cjs/domain/record/serialization/index.d.ts +17 -0
- package/cjs/domain/record/serialization/index.js +37 -0
- package/cjs/domain/record/serialization/index.js.map +1 -0
- package/cjs/domain/record/serialization/insertionCursor.d.ts +57 -0
- package/cjs/domain/record/serialization/insertionCursor.js +68 -0
- package/cjs/domain/record/serialization/insertionCursor.js.map +1 -0
- package/cjs/domain/record/serialization/serialization.types.d.ts +24 -0
- package/cjs/domain/record/serialization/serialization.types.js +3 -0
- package/cjs/domain/record/serialization/serialization.types.js.map +1 -0
- package/cjs/domain/record/serialization/serializationStats.d.ts +12 -0
- package/cjs/domain/record/serialization/serializationStats.js +32 -0
- package/cjs/domain/record/serialization/serializationStats.js.map +1 -0
- package/cjs/domain/record/serialization/serializationTransaction.d.ts +96 -0
- package/cjs/domain/record/serialization/serializationTransaction.js +103 -0
- package/cjs/domain/record/serialization/serializationTransaction.js.map +1 -0
- package/cjs/domain/record/serialization/serializationUtils.d.ts +18 -0
- package/cjs/domain/record/serialization/serializationUtils.js +88 -0
- package/cjs/domain/record/serialization/serializationUtils.js.map +1 -0
- package/cjs/domain/record/serialization/serializeAttribute.d.ts +4 -0
- package/cjs/domain/record/serialization/serializeAttribute.js +42 -0
- package/cjs/domain/record/serialization/serializeAttribute.js.map +1 -0
- package/cjs/domain/record/serialization/serializeAttributes.d.ts +7 -0
- package/cjs/domain/record/serialization/serializeAttributes.js +167 -0
- package/cjs/domain/record/serialization/serializeAttributes.js.map +1 -0
- package/cjs/domain/record/serialization/serializeFullSnapshot.d.ts +5 -0
- package/cjs/domain/record/serialization/serializeFullSnapshot.js +34 -0
- package/cjs/domain/record/serialization/serializeFullSnapshot.js.map +1 -0
- package/cjs/domain/record/serialization/serializeFullSnapshotAsChange.d.ts +5 -0
- package/cjs/domain/record/serialization/serializeFullSnapshotAsChange.js +13 -0
- package/cjs/domain/record/serialization/serializeFullSnapshotAsChange.js.map +1 -0
- package/cjs/domain/record/serialization/serializeMutations.d.ts +11 -0
- package/cjs/domain/record/serialization/serializeMutations.js +262 -0
- package/cjs/domain/record/serialization/serializeMutations.js.map +1 -0
- package/cjs/domain/record/serialization/serializeMutationsAsChange.d.ts +5 -0
- package/cjs/domain/record/serialization/serializeMutationsAsChange.js +204 -0
- package/cjs/domain/record/serialization/serializeMutationsAsChange.js.map +1 -0
- package/cjs/domain/record/serialization/serializeNode.d.ts +7 -0
- package/cjs/domain/record/serialization/serializeNode.js +154 -0
- package/cjs/domain/record/serialization/serializeNode.js.map +1 -0
- package/cjs/domain/record/serialization/serializeNodeAsChange.d.ts +4 -0
- package/cjs/domain/record/serialization/serializeNodeAsChange.js +153 -0
- package/cjs/domain/record/serialization/serializeNodeAsChange.js.map +1 -0
- package/cjs/domain/record/serialization/serializeStyleSheets.d.ts +3 -0
- package/cjs/domain/record/serialization/serializeStyleSheets.js +30 -0
- package/cjs/domain/record/serialization/serializeStyleSheets.js.map +1 -0
- package/cjs/domain/record/serializationVerifier.d.ts +18 -0
- package/cjs/domain/record/serializationVerifier.js +126 -0
- package/cjs/domain/record/serializationVerifier.js.map +1 -0
- package/cjs/domain/record/shadowRootsController.d.ts +11 -0
- package/cjs/domain/record/shadowRootsController.js +45 -0
- package/cjs/domain/record/shadowRootsController.js.map +1 -0
- package/cjs/domain/record/startFullSnapshots.d.ts +10 -0
- package/cjs/domain/record/startFullSnapshots.js +50 -0
- package/cjs/domain/record/startFullSnapshots.js.map +1 -0
- package/cjs/domain/record/trackers/index.d.ts +12 -0
- package/cjs/domain/record/trackers/index.js +27 -0
- package/cjs/domain/record/trackers/index.js.map +1 -0
- package/cjs/domain/record/trackers/trackFocus.d.ts +5 -0
- package/cjs/domain/record/trackers/trackFocus.js +15 -0
- package/cjs/domain/record/trackers/trackFocus.js.map +1 -0
- package/cjs/domain/record/trackers/trackFrustration.d.ts +6 -0
- package/cjs/domain/record/trackers/trackFrustration.js +31 -0
- package/cjs/domain/record/trackers/trackFrustration.js.map +1 -0
- package/cjs/domain/record/trackers/trackInput.d.ts +4 -0
- package/cjs/domain/record/trackers/trackInput.js +104 -0
- package/cjs/domain/record/trackers/trackInput.js.map +1 -0
- package/cjs/domain/record/trackers/trackMediaInteraction.d.ts +5 -0
- package/cjs/domain/record/trackers/trackMediaInteraction.js +29 -0
- package/cjs/domain/record/trackers/trackMediaInteraction.js.map +1 -0
- package/cjs/domain/record/trackers/trackMouseInteraction.d.ts +5 -0
- package/cjs/domain/record/trackers/trackMouseInteraction.js +59 -0
- package/cjs/domain/record/trackers/trackMouseInteraction.js.map +1 -0
- package/cjs/domain/record/trackers/trackMove.d.ts +9 -0
- package/cjs/domain/record/trackers/trackMove.js +55 -0
- package/cjs/domain/record/trackers/trackMove.js.map +1 -0
- package/cjs/domain/record/trackers/trackMutation.d.ts +13 -0
- package/cjs/domain/record/trackers/trackMutation.js +41 -0
- package/cjs/domain/record/trackers/trackMutation.js.map +1 -0
- package/cjs/domain/record/trackers/trackScroll.d.ts +5 -0
- package/cjs/domain/record/trackers/trackScroll.js +48 -0
- package/cjs/domain/record/trackers/trackScroll.js.map +1 -0
- package/cjs/domain/record/trackers/trackStyleSheet.d.ts +6 -0
- package/cjs/domain/record/trackers/trackStyleSheet.js +89 -0
- package/cjs/domain/record/trackers/trackStyleSheet.js.map +1 -0
- package/cjs/domain/record/trackers/trackViewEnd.d.ts +5 -0
- package/cjs/domain/record/trackers/trackViewEnd.js +20 -0
- package/cjs/domain/record/trackers/trackViewEnd.js.map +1 -0
- package/cjs/domain/record/trackers/trackViewportResize.d.ts +6 -0
- package/cjs/domain/record/trackers/trackViewportResize.js +46 -0
- package/cjs/domain/record/trackers/trackViewportResize.js.map +1 -0
- package/cjs/domain/record/trackers/tracker.types.d.ts +3 -0
- package/cjs/domain/record/trackers/tracker.types.js +3 -0
- package/cjs/domain/record/trackers/tracker.types.js.map +1 -0
- package/cjs/domain/record/viewports.d.ts +20 -0
- package/cjs/domain/record/viewports.js +60 -0
- package/cjs/domain/record/viewports.js.map +1 -0
- package/cjs/domain/replayStats.d.ts +8 -0
- package/cjs/domain/replayStats.js +60 -0
- package/cjs/domain/replayStats.js.map +1 -0
- package/cjs/domain/scriptLoadingError.d.ts +6 -0
- package/cjs/domain/scriptLoadingError.js +26 -0
- package/cjs/domain/scriptLoadingError.js.map +1 -0
- package/cjs/domain/segmentCollection/buildReplayPayload.d.ts +15 -0
- package/cjs/domain/segmentCollection/buildReplayPayload.js +26 -0
- package/cjs/domain/segmentCollection/buildReplayPayload.js.map +1 -0
- package/cjs/domain/segmentCollection/index.d.ts +4 -0
- package/cjs/domain/segmentCollection/index.js +11 -0
- package/cjs/domain/segmentCollection/index.js.map +1 -0
- package/cjs/domain/segmentCollection/segment.d.ts +16 -0
- package/cjs/domain/segmentCollection/segment.js +82 -0
- package/cjs/domain/segmentCollection/segment.js.map +1 -0
- package/cjs/domain/segmentCollection/segmentCollection.d.ts +31 -0
- package/cjs/domain/segmentCollection/segmentCollection.js +113 -0
- package/cjs/domain/segmentCollection/segmentCollection.js.map +1 -0
- package/cjs/domain/segmentCollection/startSegmentTelemetry.d.ts +6 -0
- package/cjs/domain/segmentCollection/startSegmentTelemetry.js +52 -0
- package/cjs/domain/segmentCollection/startSegmentTelemetry.js.map +1 -0
- package/cjs/domain/startRecordBridge.d.ts +5 -0
- package/cjs/domain/startRecordBridge.js +17 -0
- package/cjs/domain/startRecordBridge.js.map +1 -0
- package/cjs/domain/startRecorderInitTelemetry.d.ts +15 -0
- package/cjs/domain/startRecorderInitTelemetry.js +55 -0
- package/cjs/domain/startRecorderInitTelemetry.js.map +1 -0
- package/cjs/entries/internal.d.ts +11 -0
- package/cjs/entries/internal.js +28 -0
- package/cjs/entries/internal.js.map +1 -0
- package/cjs/entries/internalSynthetics.d.ts +2 -0
- package/cjs/entries/internalSynthetics.js +27 -0
- package/cjs/entries/internalSynthetics.js.map +1 -0
- package/cjs/entries/main.d.ts +23 -0
- package/cjs/entries/main.js +35 -0
- package/cjs/entries/main.js.map +1 -0
- package/cjs/types/index.d.ts +3 -0
- package/cjs/types/index.js +18 -0
- package/cjs/types/index.js.map +1 -0
- package/cjs/types/profiling.d.ts +296 -0
- package/cjs/types/profiling.js +6 -0
- package/cjs/types/profiling.js.map +1 -0
- package/cjs/types/sessionReplay.d.ts +934 -0
- package/cjs/types/sessionReplay.js +6 -0
- package/cjs/types/sessionReplay.js.map +1 -0
- package/cjs/types/sessionReplayConstants.d.ts +71 -0
- package/cjs/types/sessionReplayConstants.js +67 -0
- package/cjs/types/sessionReplayConstants.js.map +1 -0
- package/esm/boot/isBrowserSupported.d.ts +4 -0
- package/esm/boot/isBrowserSupported.js +14 -0
- package/esm/boot/isBrowserSupported.js.map +1 -0
- package/esm/boot/lazyLoadProfiler.d.ts +3 -0
- package/esm/boot/lazyLoadProfiler.js +19 -0
- package/esm/boot/lazyLoadProfiler.js.map +1 -0
- package/esm/boot/lazyLoadRecorder.d.ts +3 -0
- package/esm/boot/lazyLoadRecorder.js +19 -0
- package/esm/boot/lazyLoadRecorder.js.map +1 -0
- package/esm/boot/postStartStrategy.d.ts +33 -0
- package/esm/boot/postStartStrategy.js +95 -0
- package/esm/boot/postStartStrategy.js.map +1 -0
- package/esm/boot/preStartStrategy.d.ts +6 -0
- package/esm/boot/preStartStrategy.js +21 -0
- package/esm/boot/preStartStrategy.js.map +1 -0
- package/esm/boot/profilerApi.d.ts +2 -0
- package/esm/boot/profilerApi.js +49 -0
- package/esm/boot/profilerApi.js.map +1 -0
- package/esm/boot/recorderApi.d.ts +3 -0
- package/esm/boot/recorderApi.js +68 -0
- package/esm/boot/recorderApi.js.map +1 -0
- package/esm/boot/startRecording.d.ts +6 -0
- package/esm/boot/startRecording.js +42 -0
- package/esm/boot/startRecording.js.map +1 -0
- package/esm/domain/deflate/deflateEncoder.d.ts +3 -0
- package/esm/domain/deflate/deflateEncoder.js +107 -0
- package/esm/domain/deflate/deflateEncoder.js.map +1 -0
- package/esm/domain/deflate/deflateWorker.d.ts +29 -0
- package/esm/domain/deflate/deflateWorker.js +97 -0
- package/esm/domain/deflate/deflateWorker.js.map +1 -0
- package/esm/domain/deflate/index.d.ts +3 -0
- package/esm/domain/deflate/index.js +3 -0
- package/esm/domain/deflate/index.js.map +1 -0
- package/esm/domain/getSessionReplayLink.d.ts +2 -0
- package/esm/domain/getSessionReplayLink.js +32 -0
- package/esm/domain/getSessionReplayLink.js.map +1 -0
- package/esm/domain/profiling/actionHistory.d.ts +10 -0
- package/esm/domain/profiling/actionHistory.js +45 -0
- package/esm/domain/profiling/actionHistory.js.map +1 -0
- package/esm/domain/profiling/longTaskHistory.d.ts +11 -0
- package/esm/domain/profiling/longTaskHistory.js +24 -0
- package/esm/domain/profiling/longTaskHistory.js.map +1 -0
- package/esm/domain/profiling/profiler.d.ts +7 -0
- package/esm/domain/profiling/profiler.js +263 -0
- package/esm/domain/profiling/profiler.js.map +1 -0
- package/esm/domain/profiling/profilingContext.d.ts +6 -0
- package/esm/domain/profiling/profilingContext.js +28 -0
- package/esm/domain/profiling/profilingContext.js.map +1 -0
- package/esm/domain/profiling/profilingSupported.d.ts +1 -0
- package/esm/domain/profiling/profilingSupported.js +8 -0
- package/esm/domain/profiling/profilingSupported.js.map +1 -0
- package/esm/domain/profiling/test-utils/mockedTrace.d.ts +3 -0
- package/esm/domain/profiling/test-utils/mockedTrace.js +54 -0
- package/esm/domain/profiling/test-utils/mockedTrace.js.map +1 -0
- package/esm/domain/profiling/transport/assembly.d.ts +7 -0
- package/esm/domain/profiling/transport/assembly.js +42 -0
- package/esm/domain/profiling/transport/assembly.js.map +1 -0
- package/esm/domain/profiling/transport/buildProfileEventAttributes.d.ts +33 -0
- package/esm/domain/profiling/transport/buildProfileEventAttributes.js +60 -0
- package/esm/domain/profiling/transport/buildProfileEventAttributes.js.map +1 -0
- package/esm/domain/profiling/types/index.d.ts +2 -0
- package/esm/domain/profiling/types/index.js +2 -0
- package/esm/domain/profiling/types/index.js.map +1 -0
- package/esm/domain/profiling/types/profilerApi.types.d.ts +58 -0
- package/esm/domain/profiling/types/profilerApi.types.js +4 -0
- package/esm/domain/profiling/types/profilerApi.types.js.map +1 -0
- package/esm/domain/profiling/types/rumProfiler.types.d.ts +55 -0
- package/esm/domain/profiling/types/rumProfiler.types.js +2 -0
- package/esm/domain/profiling/types/rumProfiler.types.js.map +1 -0
- package/esm/domain/profiling/utils/getCustomOrDefaultViewName.d.ts +1 -0
- package/esm/domain/profiling/utils/getCustomOrDefaultViewName.js +3 -0
- package/esm/domain/profiling/utils/getCustomOrDefaultViewName.js.map +1 -0
- package/esm/domain/profiling/utils/getDefaultViewName.d.ts +1 -0
- package/esm/domain/profiling/utils/getDefaultViewName.js +11 -0
- package/esm/domain/profiling/utils/getDefaultViewName.js.map +1 -0
- package/esm/domain/profiling/utils/getNumberOfSamples.d.ts +8 -0
- package/esm/domain/profiling/utils/getNumberOfSamples.js +16 -0
- package/esm/domain/profiling/utils/getNumberOfSamples.js.map +1 -0
- package/esm/domain/profiling/vitalHistory.d.ts +10 -0
- package/esm/domain/profiling/vitalHistory.js +38 -0
- package/esm/domain/profiling/vitalHistory.js.map +1 -0
- package/esm/domain/record/assembly.d.ts +3 -0
- package/esm/domain/record/assembly.js +13 -0
- package/esm/domain/record/assembly.js.map +1 -0
- package/esm/domain/record/elementsScrollPositions.d.ts +10 -0
- package/esm/domain/record/elementsScrollPositions.js +20 -0
- package/esm/domain/record/elementsScrollPositions.js.map +1 -0
- package/esm/domain/record/eventsUtils.d.ts +2 -0
- package/esm/domain/record/eventsUtils.js +11 -0
- package/esm/domain/record/eventsUtils.js.map +1 -0
- package/esm/domain/record/index.d.ts +6 -0
- package/esm/domain/record/index.js +5 -0
- package/esm/domain/record/index.js.map +1 -0
- package/esm/domain/record/internalApi.d.ts +22 -0
- package/esm/domain/record/internalApi.js +51 -0
- package/esm/domain/record/internalApi.js.map +1 -0
- package/esm/domain/record/itemIds.d.ts +40 -0
- package/esm/domain/record/itemIds.js +52 -0
- package/esm/domain/record/itemIds.js.map +1 -0
- package/esm/domain/record/mutationBatch.d.ts +12 -0
- package/esm/domain/record/mutationBatch.js +40 -0
- package/esm/domain/record/mutationBatch.js.map +1 -0
- package/esm/domain/record/record.d.ts +16 -0
- package/esm/domain/record/record.js +52 -0
- package/esm/domain/record/record.js.map +1 -0
- package/esm/domain/record/record.types.d.ts +18 -0
- package/esm/domain/record/record.types.js +2 -0
- package/esm/domain/record/record.types.js.map +1 -0
- package/esm/domain/record/recordingScope.d.ts +24 -0
- package/esm/domain/record/recordingScope.js +26 -0
- package/esm/domain/record/recordingScope.js.map +1 -0
- package/esm/domain/record/serialization/changeEncoder.d.ts +22 -0
- package/esm/domain/record/serialization/changeEncoder.js +56 -0
- package/esm/domain/record/serialization/changeEncoder.js.map +1 -0
- package/esm/domain/record/serialization/conversions/changeConverter.d.ts +10 -0
- package/esm/domain/record/serialization/conversions/changeConverter.js +213 -0
- package/esm/domain/record/serialization/conversions/changeConverter.js.map +1 -0
- package/esm/domain/record/serialization/conversions/changeDecoder.d.ts +16 -0
- package/esm/domain/record/serialization/conversions/changeDecoder.js +134 -0
- package/esm/domain/record/serialization/conversions/changeDecoder.js.map +1 -0
- package/esm/domain/record/serialization/conversions/index.d.ts +7 -0
- package/esm/domain/record/serialization/conversions/index.js +4 -0
- package/esm/domain/record/serialization/conversions/index.js.map +1 -0
- package/esm/domain/record/serialization/conversions/mutationLog.d.ts +15 -0
- package/esm/domain/record/serialization/conversions/mutationLog.js +33 -0
- package/esm/domain/record/serialization/conversions/mutationLog.js.map +1 -0
- package/esm/domain/record/serialization/conversions/nodeIdRemapper.d.ts +10 -0
- package/esm/domain/record/serialization/conversions/nodeIdRemapper.js +49 -0
- package/esm/domain/record/serialization/conversions/nodeIdRemapper.js.map +1 -0
- package/esm/domain/record/serialization/conversions/renderOptions.d.ts +6 -0
- package/esm/domain/record/serialization/conversions/renderOptions.js +9 -0
- package/esm/domain/record/serialization/conversions/renderOptions.js.map +1 -0
- package/esm/domain/record/serialization/conversions/stringTable.d.ts +5 -0
- package/esm/domain/record/serialization/conversions/stringTable.js +19 -0
- package/esm/domain/record/serialization/conversions/stringTable.js.map +1 -0
- package/esm/domain/record/serialization/conversions/vDocument.d.ts +23 -0
- package/esm/domain/record/serialization/conversions/vDocument.js +173 -0
- package/esm/domain/record/serialization/conversions/vDocument.js.map +1 -0
- package/esm/domain/record/serialization/conversions/vNode.d.ts +66 -0
- package/esm/domain/record/serialization/conversions/vNode.js +282 -0
- package/esm/domain/record/serialization/conversions/vNode.js.map +1 -0
- package/esm/domain/record/serialization/conversions/vStyleSheet.d.ts +16 -0
- package/esm/domain/record/serialization/conversions/vStyleSheet.js +26 -0
- package/esm/domain/record/serialization/conversions/vStyleSheet.js.map +1 -0
- package/esm/domain/record/serialization/experimentalFeatures.d.ts +2 -0
- package/esm/domain/record/serialization/experimentalFeatures.js +12 -0
- package/esm/domain/record/serialization/experimentalFeatures.js.map +1 -0
- package/esm/domain/record/serialization/index.d.ts +17 -0
- package/esm/domain/record/serialization/index.js +14 -0
- package/esm/domain/record/serialization/index.js.map +1 -0
- package/esm/domain/record/serialization/insertionCursor.d.ts +57 -0
- package/esm/domain/record/serialization/insertionCursor.js +64 -0
- package/esm/domain/record/serialization/insertionCursor.js.map +1 -0
- package/esm/domain/record/serialization/serialization.types.d.ts +24 -0
- package/esm/domain/record/serialization/serialization.types.js +2 -0
- package/esm/domain/record/serialization/serialization.types.js.map +1 -0
- package/esm/domain/record/serialization/serializationStats.d.ts +12 -0
- package/esm/domain/record/serialization/serializationStats.js +27 -0
- package/esm/domain/record/serialization/serializationStats.js.map +1 -0
- package/esm/domain/record/serialization/serializationTransaction.d.ts +96 -0
- package/esm/domain/record/serialization/serializationTransaction.js +99 -0
- package/esm/domain/record/serialization/serializationTransaction.js.map +1 -0
- package/esm/domain/record/serialization/serializationUtils.d.ts +18 -0
- package/esm/domain/record/serialization/serializationUtils.js +80 -0
- package/esm/domain/record/serialization/serializationUtils.js.map +1 -0
- package/esm/domain/record/serialization/serializeAttribute.d.ts +4 -0
- package/esm/domain/record/serialization/serializeAttribute.js +38 -0
- package/esm/domain/record/serialization/serializeAttribute.js.map +1 -0
- package/esm/domain/record/serialization/serializeAttributes.d.ts +7 -0
- package/esm/domain/record/serialization/serializeAttributes.js +161 -0
- package/esm/domain/record/serialization/serializeAttributes.js.map +1 -0
- package/esm/domain/record/serialization/serializeFullSnapshot.d.ts +5 -0
- package/esm/domain/record/serialization/serializeFullSnapshot.js +31 -0
- package/esm/domain/record/serialization/serializeFullSnapshot.js.map +1 -0
- package/esm/domain/record/serialization/serializeFullSnapshotAsChange.d.ts +5 -0
- package/esm/domain/record/serialization/serializeFullSnapshotAsChange.js +10 -0
- package/esm/domain/record/serialization/serializeFullSnapshotAsChange.js.map +1 -0
- package/esm/domain/record/serialization/serializeMutations.d.ts +11 -0
- package/esm/domain/record/serialization/serializeMutations.js +257 -0
- package/esm/domain/record/serialization/serializeMutations.js.map +1 -0
- package/esm/domain/record/serialization/serializeMutationsAsChange.d.ts +5 -0
- package/esm/domain/record/serialization/serializeMutationsAsChange.js +201 -0
- package/esm/domain/record/serialization/serializeMutationsAsChange.js.map +1 -0
- package/esm/domain/record/serialization/serializeNode.d.ts +7 -0
- package/esm/domain/record/serialization/serializeNode.js +149 -0
- package/esm/domain/record/serialization/serializeNode.js.map +1 -0
- package/esm/domain/record/serialization/serializeNodeAsChange.d.ts +4 -0
- package/esm/domain/record/serialization/serializeNodeAsChange.js +150 -0
- package/esm/domain/record/serialization/serializeNodeAsChange.js.map +1 -0
- package/esm/domain/record/serialization/serializeStyleSheets.d.ts +3 -0
- package/esm/domain/record/serialization/serializeStyleSheets.js +27 -0
- package/esm/domain/record/serialization/serializeStyleSheets.js.map +1 -0
- package/esm/domain/record/serializationVerifier.d.ts +18 -0
- package/esm/domain/record/serializationVerifier.js +123 -0
- package/esm/domain/record/serializationVerifier.js.map +1 -0
- package/esm/domain/record/shadowRootsController.d.ts +11 -0
- package/esm/domain/record/shadowRootsController.js +41 -0
- package/esm/domain/record/shadowRootsController.js.map +1 -0
- package/esm/domain/record/startFullSnapshots.d.ts +10 -0
- package/esm/domain/record/startFullSnapshots.js +46 -0
- package/esm/domain/record/startFullSnapshots.js.map +1 -0
- package/esm/domain/record/trackers/index.d.ts +12 -0
- package/esm/domain/record/trackers/index.js +12 -0
- package/esm/domain/record/trackers/index.js.map +1 -0
- package/esm/domain/record/trackers/trackFocus.d.ts +5 -0
- package/esm/domain/record/trackers/trackFocus.js +12 -0
- package/esm/domain/record/trackers/trackFocus.js.map +1 -0
- package/esm/domain/record/trackers/trackFrustration.d.ts +6 -0
- package/esm/domain/record/trackers/trackFrustration.js +28 -0
- package/esm/domain/record/trackers/trackFrustration.js.map +1 -0
- package/esm/domain/record/trackers/trackInput.d.ts +4 -0
- package/esm/domain/record/trackers/trackInput.js +101 -0
- package/esm/domain/record/trackers/trackInput.js.map +1 -0
- package/esm/domain/record/trackers/trackMediaInteraction.d.ts +5 -0
- package/esm/domain/record/trackers/trackMediaInteraction.js +26 -0
- package/esm/domain/record/trackers/trackMediaInteraction.js.map +1 -0
- package/esm/domain/record/trackers/trackMouseInteraction.d.ts +5 -0
- package/esm/domain/record/trackers/trackMouseInteraction.js +56 -0
- package/esm/domain/record/trackers/trackMouseInteraction.js.map +1 -0
- package/esm/domain/record/trackers/trackMove.d.ts +9 -0
- package/esm/domain/record/trackers/trackMove.js +51 -0
- package/esm/domain/record/trackers/trackMove.js.map +1 -0
- package/esm/domain/record/trackers/trackMutation.d.ts +13 -0
- package/esm/domain/record/trackers/trackMutation.js +38 -0
- package/esm/domain/record/trackers/trackMutation.js.map +1 -0
- package/esm/domain/record/trackers/trackScroll.d.ts +5 -0
- package/esm/domain/record/trackers/trackScroll.js +45 -0
- package/esm/domain/record/trackers/trackScroll.js.map +1 -0
- package/esm/domain/record/trackers/trackStyleSheet.d.ts +6 -0
- package/esm/domain/record/trackers/trackStyleSheet.js +85 -0
- package/esm/domain/record/trackers/trackStyleSheet.js.map +1 -0
- package/esm/domain/record/trackers/trackViewEnd.d.ts +5 -0
- package/esm/domain/record/trackers/trackViewEnd.js +17 -0
- package/esm/domain/record/trackers/trackViewEnd.js.map +1 -0
- package/esm/domain/record/trackers/trackViewportResize.d.ts +6 -0
- package/esm/domain/record/trackers/trackViewportResize.js +42 -0
- package/esm/domain/record/trackers/trackViewportResize.js.map +1 -0
- package/esm/domain/record/trackers/tracker.types.d.ts +3 -0
- package/esm/domain/record/trackers/tracker.types.js +2 -0
- package/esm/domain/record/trackers/tracker.types.js.map +1 -0
- package/esm/domain/record/viewports.d.ts +20 -0
- package/esm/domain/record/viewports.js +55 -0
- package/esm/domain/record/viewports.js.map +1 -0
- package/esm/domain/replayStats.d.ts +8 -0
- package/esm/domain/replayStats.js +51 -0
- package/esm/domain/replayStats.js.map +1 -0
- package/esm/domain/scriptLoadingError.d.ts +6 -0
- package/esm/domain/scriptLoadingError.js +23 -0
- package/esm/domain/scriptLoadingError.js.map +1 -0
- package/esm/domain/segmentCollection/buildReplayPayload.d.ts +15 -0
- package/esm/domain/segmentCollection/buildReplayPayload.js +23 -0
- package/esm/domain/segmentCollection/buildReplayPayload.js.map +1 -0
- package/esm/domain/segmentCollection/index.d.ts +4 -0
- package/esm/domain/segmentCollection/index.js +4 -0
- package/esm/domain/segmentCollection/index.js.map +1 -0
- package/esm/domain/segmentCollection/segment.d.ts +16 -0
- package/esm/domain/segmentCollection/segment.js +46 -0
- package/esm/domain/segmentCollection/segment.js.map +1 -0
- package/esm/domain/segmentCollection/segmentCollection.d.ts +31 -0
- package/esm/domain/segmentCollection/segmentCollection.js +106 -0
- package/esm/domain/segmentCollection/segmentCollection.js.map +1 -0
- package/esm/domain/segmentCollection/startSegmentTelemetry.d.ts +6 -0
- package/esm/domain/segmentCollection/startSegmentTelemetry.js +49 -0
- package/esm/domain/segmentCollection/startSegmentTelemetry.js.map +1 -0
- package/esm/domain/startRecordBridge.d.ts +5 -0
- package/esm/domain/startRecordBridge.js +14 -0
- package/esm/domain/startRecordBridge.js.map +1 -0
- package/esm/domain/startRecorderInitTelemetry.d.ts +15 -0
- package/esm/domain/startRecorderInitTelemetry.js +52 -0
- package/esm/domain/startRecorderInitTelemetry.js.map +1 -0
- package/esm/entries/internal.d.ts +11 -0
- package/esm/entries/internal.js +4 -0
- package/esm/entries/internal.js.map +1 -0
- package/esm/entries/internalSynthetics.d.ts +2 -0
- package/esm/entries/internalSynthetics.js +23 -0
- package/esm/entries/internalSynthetics.js.map +1 -0
- package/esm/entries/main.d.ts +23 -0
- package/esm/entries/main.js +31 -0
- package/esm/entries/main.js.map +1 -0
- package/esm/types/index.d.ts +3 -0
- package/esm/types/index.js +2 -0
- package/esm/types/index.js.map +1 -0
- package/esm/types/profiling.d.ts +296 -0
- package/esm/types/profiling.js +5 -0
- package/esm/types/profiling.js.map +1 -0
- package/esm/types/sessionReplay.d.ts +934 -0
- package/esm/types/sessionReplay.js +5 -0
- package/esm/types/sessionReplay.js.map +1 -0
- package/esm/types/sessionReplayConstants.d.ts +71 -0
- package/esm/types/sessionReplayConstants.js +64 -0
- package/esm/types/sessionReplayConstants.js.map +1 -0
- package/internal/package.json +6 -0
- package/internal-synthetics/package.json +6 -0
- package/package.json +52 -0
- package/src/boot/isBrowserSupported.ts +14 -0
- package/src/boot/lazyLoadProfiler.ts +20 -0
- package/src/boot/lazyLoadRecorder.ts +20 -0
- package/src/boot/postStartStrategy.ts +176 -0
- package/src/boot/preStartStrategy.ts +34 -0
- package/src/boot/profilerApi.ts +82 -0
- package/src/boot/recorderApi.ts +113 -0
- package/src/boot/startRecording.ts +70 -0
- package/src/domain/deflate/deflateEncoder.ts +144 -0
- package/src/domain/deflate/deflateWorker.ts +152 -0
- package/src/domain/deflate/index.ts +9 -0
- package/src/domain/getSessionReplayLink.ts +40 -0
- package/src/domain/profiling/actionHistory.ts +65 -0
- package/src/domain/profiling/longTaskHistory.ts +40 -0
- package/src/domain/profiling/profiler.ts +366 -0
- package/src/domain/profiling/profilingContext.ts +39 -0
- package/src/domain/profiling/profilingSupported.ts +10 -0
- package/src/domain/profiling/test-utils/mockedTrace.ts +58 -0
- package/src/domain/profiling/transport/assembly.ts +63 -0
- package/src/domain/profiling/transport/buildProfileEventAttributes.ts +106 -0
- package/src/domain/profiling/types/index.ts +2 -0
- package/src/domain/profiling/types/profilerApi.types.ts +87 -0
- package/src/domain/profiling/types/rumProfiler.types.ts +62 -0
- package/src/domain/profiling/utils/getCustomOrDefaultViewName.ts +4 -0
- package/src/domain/profiling/utils/getDefaultViewName.ts +12 -0
- package/src/domain/profiling/utils/getNumberOfSamples.ts +17 -0
- package/src/domain/profiling/vitalHistory.ts +58 -0
- package/src/domain/record/assembly.ts +19 -0
- package/src/domain/record/elementsScrollPositions.ts +28 -0
- package/src/domain/record/eventsUtils.ts +12 -0
- package/src/domain/record/index.ts +12 -0
- package/src/domain/record/internalApi.ts +84 -0
- package/src/domain/record/itemIds.ts +97 -0
- package/src/domain/record/mutationBatch.ts +47 -0
- package/src/domain/record/record.ts +90 -0
- package/src/domain/record/record.types.ts +22 -0
- package/src/domain/record/recordingScope.ts +58 -0
- package/src/domain/record/serialization/changeEncoder.ts +89 -0
- package/src/domain/record/serialization/conversions/changeConverter.ts +277 -0
- package/src/domain/record/serialization/conversions/changeDecoder.ts +192 -0
- package/src/domain/record/serialization/conversions/index.ts +7 -0
- package/src/domain/record/serialization/conversions/mutationLog.ts +56 -0
- package/src/domain/record/serialization/conversions/nodeIdRemapper.ts +69 -0
- package/src/domain/record/serialization/conversions/renderOptions.ts +14 -0
- package/src/domain/record/serialization/conversions/stringTable.ts +25 -0
- package/src/domain/record/serialization/conversions/vDocument.ts +239 -0
- package/src/domain/record/serialization/conversions/vNode.ts +417 -0
- package/src/domain/record/serialization/conversions/vStyleSheet.ts +47 -0
- package/src/domain/record/serialization/experimentalFeatures.ts +15 -0
- package/src/domain/record/serialization/index.ts +21 -0
- package/src/domain/record/serialization/insertionCursor.ts +131 -0
- package/src/domain/record/serialization/serialization.types.ts +38 -0
- package/src/domain/record/serialization/serializationStats.ts +43 -0
- package/src/domain/record/serialization/serializationTransaction.ts +255 -0
- package/src/domain/record/serialization/serializationUtils.ts +103 -0
- package/src/domain/record/serialization/serializeAttribute.ts +55 -0
- package/src/domain/record/serialization/serializeAttributes.ts +194 -0
- package/src/domain/record/serialization/serializeFullSnapshot.ts +46 -0
- package/src/domain/record/serialization/serializeFullSnapshotAsChange.ts +33 -0
- package/src/domain/record/serialization/serializeMutations.ts +395 -0
- package/src/domain/record/serialization/serializeMutationsAsChange.ts +298 -0
- package/src/domain/record/serialization/serializeNode.ts +229 -0
- package/src/domain/record/serialization/serializeNodeAsChange.ts +237 -0
- package/src/domain/record/serialization/serializeStyleSheets.ts +36 -0
- package/src/domain/record/serializationVerifier.ts +208 -0
- package/src/domain/record/shadowRootsController.ts +62 -0
- package/src/domain/record/startFullSnapshots.ts +92 -0
- package/src/domain/record/trackers/index.ts +12 -0
- package/src/domain/record/trackers/trackFocus.ts +16 -0
- package/src/domain/record/trackers/trackFrustration.ts +39 -0
- package/src/domain/record/trackers/trackInput.ts +128 -0
- package/src/domain/record/trackers/trackMediaInteraction.ts +43 -0
- package/src/domain/record/trackers/trackMouseInteraction.ts +74 -0
- package/src/domain/record/trackers/trackMove.ts +78 -0
- package/src/domain/record/trackers/trackMutation.ts +74 -0
- package/src/domain/record/trackers/trackScroll.ts +61 -0
- package/src/domain/record/trackers/trackStyleSheet.ts +117 -0
- package/src/domain/record/trackers/trackViewEnd.ts +27 -0
- package/src/domain/record/trackers/trackViewportResize.ts +69 -0
- package/src/domain/record/trackers/tracker.types.ts +3 -0
- package/src/domain/record/viewports.ts +68 -0
- package/src/domain/replayStats.ts +61 -0
- package/src/domain/scriptLoadingError.ts +36 -0
- package/src/domain/segmentCollection/buildReplayPayload.ts +52 -0
- package/src/domain/segmentCollection/index.ts +4 -0
- package/src/domain/segmentCollection/segment.ts +79 -0
- package/src/domain/segmentCollection/segmentCollection.ts +200 -0
- package/src/domain/segmentCollection/startSegmentTelemetry.ts +91 -0
- package/src/domain/startRecordBridge.ts +17 -0
- package/src/domain/startRecorderInitTelemetry.ts +90 -0
- package/src/entries/internal.ts +18 -0
- package/src/entries/internalSynthetics.ts +24 -0
- package/src/entries/main.ts +96 -0
- package/src/types/index.ts +3 -0
- package/src/types/profiling.ts +298 -0
- package/src/types/sessionReplay.ts +990 -0
- package/src/types/sessionReplayConstants.ts +130 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"profiler.js","sourceRoot":"","sources":["../../../src/domain/profiling/profiler.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { Hooks, ProfilingInternalContextSchema } from '@datadog/browser-rum-core';
|
|
2
|
+
export interface ProfilingContextManager {
|
|
3
|
+
set: (next: ProfilingInternalContextSchema) => void;
|
|
4
|
+
get: () => ProfilingInternalContextSchema | undefined;
|
|
5
|
+
}
|
|
6
|
+
export declare function startProfilingContext(hooks: Hooks): ProfilingContextManager;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.startProfilingContext = startProfilingContext;
|
|
4
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
5
|
+
const browser_rum_core_1 = require("@datadog/browser-rum-core");
|
|
6
|
+
function startProfilingContext(hooks) {
|
|
7
|
+
let currentContext = {
|
|
8
|
+
status: 'starting',
|
|
9
|
+
};
|
|
10
|
+
hooks.register(0 /* HookNames.Assemble */, ({ eventType }) => {
|
|
11
|
+
if (eventType !== browser_rum_core_1.RumEventType.VIEW &&
|
|
12
|
+
eventType !== browser_rum_core_1.RumEventType.LONG_TASK &&
|
|
13
|
+
eventType !== browser_rum_core_1.RumEventType.ACTION &&
|
|
14
|
+
eventType !== browser_rum_core_1.RumEventType.VITAL) {
|
|
15
|
+
return browser_core_1.SKIPPED;
|
|
16
|
+
}
|
|
17
|
+
return {
|
|
18
|
+
type: eventType,
|
|
19
|
+
_dd: {
|
|
20
|
+
profiling: currentContext,
|
|
21
|
+
},
|
|
22
|
+
};
|
|
23
|
+
});
|
|
24
|
+
return {
|
|
25
|
+
get: () => currentContext,
|
|
26
|
+
set: (newContext) => {
|
|
27
|
+
currentContext = newContext;
|
|
28
|
+
},
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=profilingContext.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"profilingContext.js","sourceRoot":"","sources":["../../../src/domain/profiling/profilingContext.ts"],"names":[],"mappings":";;AASA,sDA6BC;AAtCD,wDAA0D;AAE1D,gEAAwD;AAOxD,SAAgB,qBAAqB,CAAC,KAAY;IAChD,IAAI,cAAc,GAAmC;QACnD,MAAM,EAAE,UAAU;KACnB,CAAA;IAED,KAAK,CAAC,QAAQ,6BAAqB,CAAC,EAAE,SAAS,EAAE,EAAE,EAAE;QACnD,IACE,SAAS,KAAK,+BAAY,CAAC,IAAI;YAC/B,SAAS,KAAK,+BAAY,CAAC,SAAS;YACpC,SAAS,KAAK,+BAAY,CAAC,MAAM;YACjC,SAAS,KAAK,+BAAY,CAAC,KAAK,EAChC,CAAC;YACD,OAAO,sBAAO,CAAA;QAChB,CAAC;QAED,OAAO;YACL,IAAI,EAAE,SAAS;YACf,GAAG,EAAE;gBACH,SAAS,EAAE,cAAc;aAC1B;SACF,CAAA;IACH,CAAC,CAAC,CAAA;IAEF,OAAO;QACL,GAAG,EAAE,GAAG,EAAE,CAAC,cAAc;QACzB,GAAG,EAAE,CAAC,UAA0C,EAAE,EAAE;YAClD,cAAc,GAAG,UAAU,CAAA;QAC7B,CAAC;KACF,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function isProfilingSupported(): boolean;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.isProfilingSupported = isProfilingSupported;
|
|
4
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
5
|
+
function isProfilingSupported() {
|
|
6
|
+
const globalThis = (0, browser_core_1.getGlobalObject)();
|
|
7
|
+
// This API might be unavailable in some browsers
|
|
8
|
+
const globalThisProfiler = globalThis.Profiler;
|
|
9
|
+
return globalThisProfiler !== undefined;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=profilingSupported.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"profilingSupported.js","sourceRoot":"","sources":["../../../src/domain/profiling/profilingSupported.ts"],"names":[],"mappings":";;AAGA,oDAMC;AATD,wDAAuD;AAGvD,SAAgB,oBAAoB;IAClC,MAAM,UAAU,GAAG,IAAA,8BAAe,GAAE,CAAA;IAEpC,iDAAiD;IACjD,MAAM,kBAAkB,GAA0B,UAAkB,CAAC,QAAQ,CAAA;IAC7E,OAAO,kBAAkB,KAAK,SAAS,CAAA;AACzC,CAAC"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.mockedTrace = exports.mockedEmptyTrace = void 0;
|
|
4
|
+
const generateFiftyRandomSamples = () => {
|
|
5
|
+
const samples = [];
|
|
6
|
+
for (let i = 0; i < 50; i++) {
|
|
7
|
+
samples.push({
|
|
8
|
+
timestamp: i,
|
|
9
|
+
stackId: i % 3,
|
|
10
|
+
});
|
|
11
|
+
}
|
|
12
|
+
return samples;
|
|
13
|
+
};
|
|
14
|
+
// eslint-disable-next-line local-rules/disallow-side-effects
|
|
15
|
+
const randomSamples = generateFiftyRandomSamples();
|
|
16
|
+
exports.mockedEmptyTrace = {
|
|
17
|
+
resources: [],
|
|
18
|
+
frames: [],
|
|
19
|
+
stacks: [],
|
|
20
|
+
samples: [],
|
|
21
|
+
};
|
|
22
|
+
exports.mockedTrace = {
|
|
23
|
+
resources: ['resource1', 'resource2', 'resource3'],
|
|
24
|
+
frames: [
|
|
25
|
+
{
|
|
26
|
+
name: 'frame-0',
|
|
27
|
+
line: 1,
|
|
28
|
+
column: 1,
|
|
29
|
+
resourceId: 0,
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: 'frame-1',
|
|
33
|
+
line: 2,
|
|
34
|
+
column: 2,
|
|
35
|
+
resourceId: 1,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
name: 'frame-2',
|
|
39
|
+
line: 3,
|
|
40
|
+
column: 3,
|
|
41
|
+
resourceId: 2,
|
|
42
|
+
},
|
|
43
|
+
],
|
|
44
|
+
stacks: [
|
|
45
|
+
{
|
|
46
|
+
frameId: 0,
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
frameId: 1,
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
frameId: 2,
|
|
53
|
+
},
|
|
54
|
+
],
|
|
55
|
+
samples: randomSamples,
|
|
56
|
+
};
|
|
57
|
+
//# sourceMappingURL=mockedTrace.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mockedTrace.js","sourceRoot":"","sources":["../../../../src/domain/profiling/test-utils/mockedTrace.ts"],"names":[],"mappings":";;;AAEA,MAAM,0BAA0B,GAAG,GAAG,EAAE;IACtC,MAAM,OAAO,GAAG,EAAE,CAAA;IAClB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC;QAC5B,OAAO,CAAC,IAAI,CAAC;YACX,SAAS,EAAE,CAAC;YACZ,OAAO,EAAE,CAAC,GAAG,CAAC;SACf,CAAC,CAAA;IACJ,CAAC;IACD,OAAO,OAAO,CAAA;AAChB,CAAC,CAAA;AAED,6DAA6D;AAC7D,MAAM,aAAa,GAAG,0BAA0B,EAAE,CAAA;AAErC,QAAA,gBAAgB,GAAkB;IAC7C,SAAS,EAAE,EAAE;IACb,MAAM,EAAE,EAAE;IACV,MAAM,EAAE,EAAE;IACV,OAAO,EAAE,EAAE;CACZ,CAAA;AAEY,QAAA,WAAW,GAAkB;IACxC,SAAS,EAAE,CAAC,WAAW,EAAE,WAAW,EAAE,WAAW,CAAC;IAClD,MAAM,EAAE;QACN;YACE,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,CAAC;YACP,MAAM,EAAE,CAAC;YACT,UAAU,EAAE,CAAC;SACd;QACD;YACE,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,CAAC;YACP,MAAM,EAAE,CAAC;YACT,UAAU,EAAE,CAAC;SACd;QACD;YACE,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,CAAC;YACP,MAAM,EAAE,CAAC;YACT,UAAU,EAAE,CAAC;SACd;KACF;IACD,MAAM,EAAE;QACN;YACE,OAAO,EAAE,CAAC;SACX;QACD;YACE,OAAO,EAAE,CAAC;SACX;QACD;YACE,OAAO,EAAE,CAAC;SACX;KACF;IACD,OAAO,EAAE,aAAa;CACvB,CAAA"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { RumConfiguration } from '@datadog/browser-rum-core';
|
|
2
|
+
import type { BrowserProfileEvent, BrowserProfilerTrace } from '../../../types';
|
|
3
|
+
export interface ProfileEventPayload {
|
|
4
|
+
event: BrowserProfileEvent;
|
|
5
|
+
'wall-time.json': BrowserProfilerTrace;
|
|
6
|
+
}
|
|
7
|
+
export declare function assembleProfilingPayload(profilerTrace: BrowserProfilerTrace, configuration: RumConfiguration, sessionId: string | undefined): ProfileEventPayload;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.assembleProfilingPayload = assembleProfilingPayload;
|
|
4
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
5
|
+
const buildProfileEventAttributes_1 = require("./buildProfileEventAttributes");
|
|
6
|
+
function assembleProfilingPayload(profilerTrace, configuration, sessionId) {
|
|
7
|
+
const event = buildProfileEvent(profilerTrace, configuration, sessionId);
|
|
8
|
+
return {
|
|
9
|
+
event,
|
|
10
|
+
'wall-time.json': profilerTrace,
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
function buildProfileEvent(profilerTrace, configuration, sessionId) {
|
|
14
|
+
const tags = (0, browser_core_1.buildTags)(configuration); // TODO: get that from the tagContext hook
|
|
15
|
+
const profileAttributes = (0, buildProfileEventAttributes_1.buildProfileEventAttributes)(profilerTrace, configuration.applicationId, sessionId);
|
|
16
|
+
const profileEventTags = buildProfileEventTags(tags);
|
|
17
|
+
const profileEvent = {
|
|
18
|
+
...profileAttributes,
|
|
19
|
+
attachments: ['wall-time.json'],
|
|
20
|
+
start: new Date(profilerTrace.startClocks.timeStamp).toISOString(),
|
|
21
|
+
end: new Date(profilerTrace.endClocks.timeStamp).toISOString(),
|
|
22
|
+
family: 'chrome',
|
|
23
|
+
runtime: 'chrome',
|
|
24
|
+
format: 'json',
|
|
25
|
+
version: 4, // Ingestion event version (not the version application tag)
|
|
26
|
+
tags_profiler: profileEventTags.join(','),
|
|
27
|
+
_dd: {
|
|
28
|
+
clock_drift: (0, browser_core_1.currentDrift)(),
|
|
29
|
+
},
|
|
30
|
+
};
|
|
31
|
+
return profileEvent;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Builds tags for the Profile Event.
|
|
35
|
+
*
|
|
36
|
+
* @param tags - RUM tags
|
|
37
|
+
* @returns Combined tags for the Profile Event.
|
|
38
|
+
*/
|
|
39
|
+
function buildProfileEventTags(tags) {
|
|
40
|
+
// Tags already contains the common tags for all events. (service, env, version, etc.)
|
|
41
|
+
// Here we are adding some specific-to-profiling tags.
|
|
42
|
+
const profileEventTags = tags.concat(['language:javascript', 'runtime:chrome', 'family:chrome', 'host:browser']);
|
|
43
|
+
return profileEventTags;
|
|
44
|
+
}
|
|
45
|
+
//# sourceMappingURL=assembly.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"assembly.js","sourceRoot":"","sources":["../../../../src/domain/profiling/transport/assembly.ts"],"names":[],"mappings":";;AAUA,4DAWC;AArBD,wDAA+D;AAG/D,+EAA2E;AAO3E,SAAgB,wBAAwB,CACtC,aAAmC,EACnC,aAA+B,EAC/B,SAA6B;IAE7B,MAAM,KAAK,GAAG,iBAAiB,CAAC,aAAa,EAAE,aAAa,EAAE,SAAS,CAAC,CAAA;IAExE,OAAO;QACL,KAAK;QACL,gBAAgB,EAAE,aAAa;KAChC,CAAA;AACH,CAAC;AAED,SAAS,iBAAiB,CACxB,aAAmC,EACnC,aAA+B,EAC/B,SAA6B;IAE7B,MAAM,IAAI,GAAG,IAAA,wBAAS,EAAC,aAAa,CAAC,CAAA,CAAC,0CAA0C;IAChF,MAAM,iBAAiB,GAAG,IAAA,yDAA2B,EAAC,aAAa,EAAE,aAAa,CAAC,aAAa,EAAE,SAAS,CAAC,CAAA;IAC5G,MAAM,gBAAgB,GAAG,qBAAqB,CAAC,IAAI,CAAC,CAAA;IAEpD,MAAM,YAAY,GAAiC;QACjD,GAAG,iBAAiB;QACpB,WAAW,EAAE,CAAC,gBAAgB,CAAC;QAC/B,KAAK,EAAE,IAAI,IAAI,CAAC,aAAa,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC,WAAW,EAAE;QAClE,GAAG,EAAE,IAAI,IAAI,CAAC,aAAa,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,WAAW,EAAE;QAC9D,MAAM,EAAE,QAAQ;QAChB,OAAO,EAAE,QAAQ;QACjB,MAAM,EAAE,MAAM;QACd,OAAO,EAAE,CAAC,EAAE,4DAA4D;QACxE,aAAa,EAAE,gBAAgB,CAAC,IAAI,CAAC,GAAG,CAAC;QACzC,GAAG,EAAE;YACH,WAAW,EAAE,IAAA,2BAAY,GAAE;SAC5B;KACF,CAAA;IAED,OAAO,YAAY,CAAA;AACrB,CAAC;AAED;;;;;GAKG;AACH,SAAS,qBAAqB,CAAC,IAAc;IAC3C,sFAAsF;IACtF,sDAAsD;IACtD,MAAM,gBAAgB,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,qBAAqB,EAAE,gBAAgB,EAAE,eAAe,EAAE,cAAc,CAAC,CAAC,CAAA;IAEhH,OAAO,gBAAgB,CAAA;AACzB,CAAC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import type { BrowserProfilerTrace } from '../../../types';
|
|
2
|
+
export interface ProfileEventAttributes {
|
|
3
|
+
application: {
|
|
4
|
+
id: string;
|
|
5
|
+
};
|
|
6
|
+
session?: {
|
|
7
|
+
id: string;
|
|
8
|
+
};
|
|
9
|
+
view?: {
|
|
10
|
+
id: string[];
|
|
11
|
+
name: string[];
|
|
12
|
+
};
|
|
13
|
+
long_task?: {
|
|
14
|
+
id: string[];
|
|
15
|
+
};
|
|
16
|
+
action?: {
|
|
17
|
+
id: string[];
|
|
18
|
+
label: string[];
|
|
19
|
+
};
|
|
20
|
+
vital?: {
|
|
21
|
+
id: string[];
|
|
22
|
+
label: string[];
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Builds attributes for the Profile Event.
|
|
27
|
+
*
|
|
28
|
+
* @param profilerTrace - Profiler trace
|
|
29
|
+
* @param applicationId - application id.
|
|
30
|
+
* @param sessionId - session id.
|
|
31
|
+
* @returns Additional attributes.
|
|
32
|
+
*/
|
|
33
|
+
export declare function buildProfileEventAttributes(profilerTrace: BrowserProfilerTrace, applicationId: string, sessionId: string | undefined): ProfileEventAttributes;
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.buildProfileEventAttributes = buildProfileEventAttributes;
|
|
4
|
+
/**
|
|
5
|
+
* Builds attributes for the Profile Event.
|
|
6
|
+
*
|
|
7
|
+
* @param profilerTrace - Profiler trace
|
|
8
|
+
* @param applicationId - application id.
|
|
9
|
+
* @param sessionId - session id.
|
|
10
|
+
* @returns Additional attributes.
|
|
11
|
+
*/
|
|
12
|
+
function buildProfileEventAttributes(profilerTrace, applicationId, sessionId) {
|
|
13
|
+
var _a, _b;
|
|
14
|
+
// Extract view ids and names from the profiler trace and add them as attributes of the profile event.
|
|
15
|
+
// This will be used to filter the profiles by @view.id and/or @view.name.
|
|
16
|
+
const { ids, names } = extractViewIdsAndNames(profilerTrace.views);
|
|
17
|
+
const longTaskIds = profilerTrace.longTasks.map((longTask) => longTask.id).filter((id) => id !== undefined);
|
|
18
|
+
const actionIds = (_b = (_a = profilerTrace.actions) === null || _a === void 0 ? void 0 : _a.map((longTask) => longTask.id).filter((id) => id !== undefined)) !== null && _b !== void 0 ? _b : [];
|
|
19
|
+
const { ids: vitalIds, labels: vitalLabels } = extractVitalIdsAndLabels(profilerTrace.vitals);
|
|
20
|
+
const attributes = { application: { id: applicationId } };
|
|
21
|
+
if (sessionId) {
|
|
22
|
+
attributes.session = { id: sessionId };
|
|
23
|
+
}
|
|
24
|
+
if (ids.length) {
|
|
25
|
+
attributes.view = { id: ids, name: names };
|
|
26
|
+
}
|
|
27
|
+
if (longTaskIds.length) {
|
|
28
|
+
attributes.long_task = { id: longTaskIds };
|
|
29
|
+
}
|
|
30
|
+
if (actionIds.length) {
|
|
31
|
+
attributes.action = { id: actionIds, label: [] };
|
|
32
|
+
}
|
|
33
|
+
if (vitalIds.length) {
|
|
34
|
+
attributes.vital = { id: vitalIds, label: vitalLabels };
|
|
35
|
+
}
|
|
36
|
+
return attributes;
|
|
37
|
+
}
|
|
38
|
+
function extractViewIdsAndNames(views) {
|
|
39
|
+
const result = { ids: [], names: [] };
|
|
40
|
+
for (const view of views) {
|
|
41
|
+
result.ids.push(view.viewId);
|
|
42
|
+
if (view.viewName) {
|
|
43
|
+
result.names.push(view.viewName);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
// Remove duplicates
|
|
47
|
+
result.names = Array.from(new Set(result.names));
|
|
48
|
+
return result;
|
|
49
|
+
}
|
|
50
|
+
function extractVitalIdsAndLabels(vitals) {
|
|
51
|
+
const result = { ids: [], labels: [] };
|
|
52
|
+
if (!vitals) {
|
|
53
|
+
return result;
|
|
54
|
+
}
|
|
55
|
+
for (const vital of vitals) {
|
|
56
|
+
result.ids.push(vital.id);
|
|
57
|
+
result.labels.push(vital.label);
|
|
58
|
+
}
|
|
59
|
+
// Remove duplicates
|
|
60
|
+
result.labels = Array.from(new Set(result.labels));
|
|
61
|
+
return result;
|
|
62
|
+
}
|
|
63
|
+
//# sourceMappingURL=buildProfileEventAttributes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"buildProfileEventAttributes.js","sourceRoot":"","sources":["../../../../src/domain/profiling/transport/buildProfileEventAttributes.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/domain/profiling/types/index.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
export interface ProfilerFrame {
|
|
2
|
+
/** A function instance name. */
|
|
3
|
+
readonly name: string;
|
|
4
|
+
/** Index in the trace.resources array. */
|
|
5
|
+
readonly resourceId?: number;
|
|
6
|
+
/** 1-based index of the line. */
|
|
7
|
+
readonly line?: number;
|
|
8
|
+
/** 1-based index of the column. */
|
|
9
|
+
readonly column?: number;
|
|
10
|
+
}
|
|
11
|
+
export interface ProfilerStack {
|
|
12
|
+
/** Index in the trace.stacks array. */
|
|
13
|
+
readonly parentId?: number;
|
|
14
|
+
/** Index in the trace.frames array. */
|
|
15
|
+
readonly frameId: number;
|
|
16
|
+
}
|
|
17
|
+
export interface ProfilerSample {
|
|
18
|
+
/** High resolution time relative to the profiling session's time origin. */
|
|
19
|
+
readonly timestamp: number;
|
|
20
|
+
/** Index in the trace.stacks array. */
|
|
21
|
+
readonly stackId?: number;
|
|
22
|
+
}
|
|
23
|
+
export type ProfilerResource = string;
|
|
24
|
+
export interface ProfilerTrace {
|
|
25
|
+
/** An array of profiler resources. */
|
|
26
|
+
readonly resources: ProfilerResource[];
|
|
27
|
+
/** An array of profiler frames. */
|
|
28
|
+
readonly frames: ProfilerFrame[];
|
|
29
|
+
/** An array of profiler stacks. */
|
|
30
|
+
readonly stacks: ProfilerStack[];
|
|
31
|
+
/** An array of profiler samples. */
|
|
32
|
+
readonly samples: ProfilerSample[];
|
|
33
|
+
}
|
|
34
|
+
export interface ProfilerInitOptions {
|
|
35
|
+
/** Sample interval in ms. */
|
|
36
|
+
readonly sampleInterval: number;
|
|
37
|
+
/** Max buffer size in number of samples. */
|
|
38
|
+
readonly maxBufferSize: number;
|
|
39
|
+
}
|
|
40
|
+
export interface Profiler extends EventTarget {
|
|
41
|
+
/** Sample interval in ms. */
|
|
42
|
+
readonly sampleInterval: number;
|
|
43
|
+
/** True if profiler is stopped. */
|
|
44
|
+
readonly stopped: boolean;
|
|
45
|
+
new (options: ProfilerInitOptions): Profiler;
|
|
46
|
+
stop(): Promise<ProfilerTrace>;
|
|
47
|
+
addEventListener<K extends keyof ProfilerEventMap>(type: K, listener: (this: typeof globalThis, ev: ProfilerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
48
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
49
|
+
removeEventListener<K extends keyof ProfilerEventMap>(type: K, listener: (this: typeof globalThis, ev: ProfilerEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
50
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
51
|
+
}
|
|
52
|
+
interface ProfilerEventMap {
|
|
53
|
+
samplebufferfull: SampleBufferFullEvent;
|
|
54
|
+
}
|
|
55
|
+
export interface SampleBufferFullEvent extends Event {
|
|
56
|
+
readonly target: Profiler;
|
|
57
|
+
}
|
|
58
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"profilerApi.types.js","sourceRoot":"","sources":["../../../../src/domain/profiling/types/profilerApi.types.ts"],"names":[],"mappings":";AAAA,wCAAwC;AACxC,4CAA4C"}
|
|
@@ -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,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getCustomOrDefaultViewName = void 0;
|
|
4
|
+
const getDefaultViewName_1 = require("./getDefaultViewName");
|
|
5
|
+
const getCustomOrDefaultViewName = (customViewName, viewPathUrl) => customViewName || (0, getDefaultViewName_1.getDefaultViewName)(viewPathUrl);
|
|
6
|
+
exports.getCustomOrDefaultViewName = getCustomOrDefaultViewName;
|
|
7
|
+
//# sourceMappingURL=getCustomOrDefaultViewName.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getCustomOrDefaultViewName.js","sourceRoot":"","sources":["../../../../src/domain/profiling/utils/getCustomOrDefaultViewName.ts"],"names":[],"mappings":";;;AAAA,6DAAyD;AAElD,MAAM,0BAA0B,GAAG,CAAC,cAAkC,EAAE,WAAmB,EAAU,EAAE,CAC5G,cAAc,IAAI,IAAA,uCAAkB,EAAC,WAAW,CAAC,CAAA;AADtC,QAAA,0BAA0B,8BACY"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function getDefaultViewName(viewPathUrl: string): string;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getDefaultViewName = getDefaultViewName;
|
|
4
|
+
// This is the regex used to extract the path from the url (from SimpleUrlGroupingProcessor.java)
|
|
5
|
+
// It's a bit different from the one in the java code because we removed the lookbehind unsupported by Safari.
|
|
6
|
+
const PATH_MIXED_ALPHANUMERICS = /\/(?![vV]\d{1,2}\/)([^/\d?]*\d+[^/?]*)/g;
|
|
7
|
+
function getDefaultViewName(viewPathUrl) {
|
|
8
|
+
if (!viewPathUrl) {
|
|
9
|
+
return '/';
|
|
10
|
+
}
|
|
11
|
+
// Replace all the mixed alphanumerics with a ?
|
|
12
|
+
return viewPathUrl.replace(PATH_MIXED_ALPHANUMERICS, '/?');
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=getDefaultViewName.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getDefaultViewName.js","sourceRoot":"","sources":["../../../../src/domain/profiling/utils/getDefaultViewName.ts"],"names":[],"mappings":";;AAIA,gDAOC;AAXD,iGAAiG;AACjG,8GAA8G;AAC9G,MAAM,wBAAwB,GAAG,yCAAyC,CAAA;AAE1E,SAAgB,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,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getNumberOfSamples = getNumberOfSamples;
|
|
4
|
+
/**
|
|
5
|
+
* Counts number of samples when the thread was not idle (stackId is defined)
|
|
6
|
+
*
|
|
7
|
+
* @param samples - Array of collected samples
|
|
8
|
+
* @returns Number of samples
|
|
9
|
+
*/
|
|
10
|
+
function getNumberOfSamples(samples) {
|
|
11
|
+
let numberOfSamples = 0;
|
|
12
|
+
for (const sample of samples) {
|
|
13
|
+
if (sample.stackId !== undefined) {
|
|
14
|
+
numberOfSamples++;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
return numberOfSamples;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=getNumberOfSamples.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getNumberOfSamples.js","sourceRoot":"","sources":["../../../../src/domain/profiling/utils/getNumberOfSamples.ts"],"names":[],"mappings":";;AAQA,gDAQC;AAdD;;;;;GAKG;AACH,SAAgB,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,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.VITAL_ID_HISTORY_TIME_OUT_DELAY = void 0;
|
|
4
|
+
exports.createVitalHistory = createVitalHistory;
|
|
5
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
6
|
+
exports.VITAL_ID_HISTORY_TIME_OUT_DELAY = browser_core_1.SESSION_TIME_OUT_DELAY;
|
|
7
|
+
function createVitalHistory(lifeCycle) {
|
|
8
|
+
const history = (0, browser_core_1.createValueHistory)({
|
|
9
|
+
expireDelay: exports.VITAL_ID_HISTORY_TIME_OUT_DELAY,
|
|
10
|
+
});
|
|
11
|
+
lifeCycle.subscribe(16 /* LifeCycleEventType.VITAL_STARTED */, (vitalStart) => {
|
|
12
|
+
history.add({
|
|
13
|
+
id: vitalStart.id,
|
|
14
|
+
startClocks: vitalStart.startClocks,
|
|
15
|
+
duration: undefined,
|
|
16
|
+
label: vitalStart.name,
|
|
17
|
+
}, vitalStart.startClocks.relative);
|
|
18
|
+
});
|
|
19
|
+
lifeCycle.subscribe(12 /* LifeCycleEventType.RAW_RUM_EVENT_COLLECTED */, ({ rawRumEvent, startClocks, duration }) => {
|
|
20
|
+
if (rawRumEvent.type === 'vital') {
|
|
21
|
+
const historyEntry = history
|
|
22
|
+
.getEntries(startClocks.relative)
|
|
23
|
+
.find((entry) => entry.value.id === rawRumEvent.vital.id);
|
|
24
|
+
if (historyEntry) {
|
|
25
|
+
historyEntry.value.duration = duration;
|
|
26
|
+
historyEntry.close((0, browser_core_1.addDuration)(startClocks.relative, duration));
|
|
27
|
+
}
|
|
28
|
+
else {
|
|
29
|
+
history
|
|
30
|
+
.add({
|
|
31
|
+
id: rawRumEvent.vital.id,
|
|
32
|
+
startClocks,
|
|
33
|
+
duration,
|
|
34
|
+
label: rawRumEvent.vital.name,
|
|
35
|
+
}, startClocks.relative)
|
|
36
|
+
.close((0, browser_core_1.addDuration)(startClocks.relative, duration));
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
});
|
|
40
|
+
return history;
|
|
41
|
+
}
|
|
42
|
+
//# sourceMappingURL=vitalHistory.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"vitalHistory.js","sourceRoot":"","sources":["../../../src/domain/profiling/vitalHistory.ts"],"names":[],"mappings":";;;AAcA,gDA2CC;AAxDD,wDAA+F;AAIlF,QAAA,+BAA+B,GAAG,qCAAsB,CAAA;AASrE,SAAgB,kBAAkB,CAAC,SAAoB;IACrD,MAAM,OAAO,GAAG,IAAA,iCAAkB,EAAe;QAC/C,WAAW,EAAE,uCAA+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,IAAA,0BAAW,EAAC,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,IAAA,0BAAW,EAAC,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,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.assembleIncrementalSnapshot = assembleIncrementalSnapshot;
|
|
4
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
5
|
+
const types_1 = require("../../types");
|
|
6
|
+
function assembleIncrementalSnapshot(source, data, timestamp = (0, browser_core_1.timeStampNow)()) {
|
|
7
|
+
return {
|
|
8
|
+
data: {
|
|
9
|
+
source,
|
|
10
|
+
...data,
|
|
11
|
+
},
|
|
12
|
+
type: types_1.RecordType.IncrementalSnapshot,
|
|
13
|
+
timestamp,
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=assembly.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"assembly.js","sourceRoot":"","sources":["../../../src/domain/record/assembly.ts"],"names":[],"mappings":";;AAKA,kEAaC;AAjBD,wDAAoD;AAEpD,uCAAwC;AAExC,SAAgB,2BAA2B,CACzC,MAAsB,EACtB,IAA0B,EAC1B,YAAuB,IAAA,2BAAY,GAAE;IAErC,OAAO;QACL,IAAI,EAAE;YACJ,MAAM;YACN,GAAG,IAAI;SACA;QACT,IAAI,EAAE,kBAAU,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
|
+
};
|