@pratham.raval/browser-core 6.22.3
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/README.md +3 -0
- package/cjs/boot/displayAlreadyInitializedError.d.ts +2 -0
- package/cjs/boot/displayAlreadyInitializedError.js +10 -0
- package/cjs/boot/displayAlreadyInitializedError.js.map +1 -0
- package/cjs/boot/init.d.ts +14 -0
- package/cjs/boot/init.js +39 -0
- package/cjs/boot/init.js.map +1 -0
- package/cjs/browser/addEventListener.d.ts +87 -0
- package/cjs/browser/addEventListener.js +55 -0
- package/cjs/browser/addEventListener.js.map +1 -0
- package/cjs/browser/browser.types.d.ts +51 -0
- package/cjs/browser/browser.types.js +6 -0
- package/cjs/browser/browser.types.js.map +1 -0
- package/cjs/browser/cookie.d.ts +18 -0
- package/cjs/browser/cookie.js +101 -0
- package/cjs/browser/cookie.js.map +1 -0
- package/cjs/browser/fetchObservable.d.ts +25 -0
- package/cjs/browser/fetchObservable.js +79 -0
- package/cjs/browser/fetchObservable.js.map +1 -0
- package/cjs/browser/pageMayExitObservable.d.ts +14 -0
- package/cjs/browser/pageMayExitObservable.js +45 -0
- package/cjs/browser/pageMayExitObservable.js.map +1 -0
- package/cjs/browser/runOnReadyState.d.ts +5 -0
- package/cjs/browser/runOnReadyState.js +20 -0
- package/cjs/browser/runOnReadyState.js.map +1 -0
- package/cjs/browser/xhrObservable.d.ts +23 -0
- package/cjs/browser/xhrObservable.js +83 -0
- package/cjs/browser/xhrObservable.js.map +1 -0
- package/cjs/domain/allowedTrackingOrigins.d.ts +4 -0
- package/cjs/domain/allowedTrackingOrigins.js +25 -0
- package/cjs/domain/allowedTrackingOrigins.js.map +1 -0
- package/cjs/domain/bufferedData.d.ts +14 -0
- package/cjs/domain/bufferedData.js +22 -0
- package/cjs/domain/bufferedData.js.map +1 -0
- package/cjs/domain/configuration/configuration.d.ts +303 -0
- package/cjs/domain/configuration/configuration.js +152 -0
- package/cjs/domain/configuration/configuration.js.map +1 -0
- package/cjs/domain/configuration/endpointBuilder.d.ts +12 -0
- package/cjs/domain/configuration/endpointBuilder.js +78 -0
- package/cjs/domain/configuration/endpointBuilder.js.map +1 -0
- package/cjs/domain/configuration/index.d.ts +5 -0
- package/cjs/domain/configuration/index.js +16 -0
- package/cjs/domain/configuration/index.js.map +1 -0
- package/cjs/domain/configuration/transportConfiguration.d.ts +20 -0
- package/cjs/domain/configuration/transportConfiguration.js +54 -0
- package/cjs/domain/configuration/transportConfiguration.js.map +1 -0
- package/cjs/domain/connectivity/connectivity.d.ts +14 -0
- package/cjs/domain/connectivity/connectivity.js +14 -0
- package/cjs/domain/connectivity/connectivity.js.map +1 -0
- package/cjs/domain/connectivity/index.d.ts +1 -0
- package/cjs/domain/connectivity/index.js +18 -0
- package/cjs/domain/connectivity/index.js.map +1 -0
- package/cjs/domain/console/consoleObservable.d.ts +21 -0
- package/cjs/domain/console/consoleObservable.js +84 -0
- package/cjs/domain/console/consoleObservable.js.map +1 -0
- package/cjs/domain/context/contextConstants.d.ts +21 -0
- package/cjs/domain/context/contextConstants.js +18 -0
- package/cjs/domain/context/contextConstants.js.map +1 -0
- package/cjs/domain/context/contextManager.d.ts +19 -0
- package/cjs/domain/context/contextManager.js +60 -0
- package/cjs/domain/context/contextManager.js.map +1 -0
- package/cjs/domain/context/contextUtils.d.ts +5 -0
- package/cjs/domain/context/contextUtils.js +16 -0
- package/cjs/domain/context/contextUtils.js.map +1 -0
- package/cjs/domain/context/defineContextMethod.d.ts +6 -0
- package/cjs/domain/context/defineContextMethod.js +21 -0
- package/cjs/domain/context/defineContextMethod.js.map +1 -0
- package/cjs/domain/context/storeContextManager.d.ts +6 -0
- package/cjs/domain/context/storeContextManager.js +40 -0
- package/cjs/domain/context/storeContextManager.js.map +1 -0
- package/cjs/domain/contexts/accountContext.d.ts +26 -0
- package/cjs/domain/contexts/accountContext.js +33 -0
- package/cjs/domain/contexts/accountContext.js.map +1 -0
- package/cjs/domain/contexts/globalContext.d.ts +18 -0
- package/cjs/domain/contexts/globalContext.js +21 -0
- package/cjs/domain/contexts/globalContext.js.map +1 -0
- package/cjs/domain/contexts/rumInternalContext.type.d.ts +14 -0
- package/cjs/domain/contexts/rumInternalContext.type.js +3 -0
- package/cjs/domain/contexts/rumInternalContext.type.js.map +1 -0
- package/cjs/domain/contexts/userContext.d.ts +29 -0
- package/cjs/domain/contexts/userContext.js +45 -0
- package/cjs/domain/contexts/userContext.js.map +1 -0
- package/cjs/domain/deflate/deflate.types.d.ts +40 -0
- package/cjs/domain/deflate/deflate.types.js +3 -0
- package/cjs/domain/deflate/deflate.types.js.map +1 -0
- package/cjs/domain/deflate/index.d.ts +1 -0
- package/cjs/domain/deflate/index.js +18 -0
- package/cjs/domain/deflate/index.js.map +1 -0
- package/cjs/domain/error/error.d.ts +23 -0
- package/cjs/domain/error/error.js +74 -0
- package/cjs/domain/error/error.js.map +1 -0
- package/cjs/domain/error/error.types.d.ts +47 -0
- package/cjs/domain/error/error.types.js +13 -0
- package/cjs/domain/error/error.types.js.map +1 -0
- package/cjs/domain/error/trackRuntimeError.d.ts +11 -0
- package/cjs/domain/error/trackRuntimeError.js +48 -0
- package/cjs/domain/error/trackRuntimeError.js.map +1 -0
- package/cjs/domain/eventRateLimiter/createEventRateLimiter.d.ts +5 -0
- package/cjs/domain/eventRateLimiter/createEventRateLimiter.js +39 -0
- package/cjs/domain/eventRateLimiter/createEventRateLimiter.js.map +1 -0
- package/cjs/domain/extension/extensionUtils.d.ts +10 -0
- package/cjs/domain/extension/extensionUtils.js +30 -0
- package/cjs/domain/extension/extensionUtils.js.map +1 -0
- package/cjs/domain/intakeSites.d.ts +8 -0
- package/cjs/domain/intakeSites.js +11 -0
- package/cjs/domain/intakeSites.js.map +1 -0
- package/cjs/domain/report/browser.types.d.ts +34 -0
- package/cjs/domain/report/browser.types.js +3 -0
- package/cjs/domain/report/browser.types.js.map +1 -0
- package/cjs/domain/report/reportObservable.d.ts +14 -0
- package/cjs/domain/report/reportObservable.js +99 -0
- package/cjs/domain/report/reportObservable.js.map +1 -0
- package/cjs/domain/resourceUtils.d.ts +18 -0
- package/cjs/domain/resourceUtils.js +20 -0
- package/cjs/domain/resourceUtils.js.map +1 -0
- package/cjs/domain/session/oldCookiesMigration.d.ts +11 -0
- package/cjs/domain/session/oldCookiesMigration.js +40 -0
- package/cjs/domain/session/oldCookiesMigration.js.map +1 -0
- package/cjs/domain/session/sessionConstants.d.ts +15 -0
- package/cjs/domain/session/sessionConstants.js +16 -0
- package/cjs/domain/session/sessionConstants.js.map +1 -0
- package/cjs/domain/session/sessionManager.d.ts +28 -0
- package/cjs/domain/session/sessionManager.js +185 -0
- package/cjs/domain/session/sessionManager.js.map +1 -0
- package/cjs/domain/session/sessionState.d.ts +16 -0
- package/cjs/domain/session/sessionState.js +76 -0
- package/cjs/domain/session/sessionState.js.map +1 -0
- package/cjs/domain/session/sessionStateValidation.d.ts +3 -0
- package/cjs/domain/session/sessionStateValidation.js +11 -0
- package/cjs/domain/session/sessionStateValidation.js.map +1 -0
- package/cjs/domain/session/sessionStore.d.ts +38 -0
- package/cjs/domain/session/sessionStore.js +181 -0
- package/cjs/domain/session/sessionStore.js.map +1 -0
- package/cjs/domain/session/sessionStoreOperations.d.ts +12 -0
- package/cjs/domain/session/sessionStoreOperations.js +119 -0
- package/cjs/domain/session/sessionStoreOperations.js.map +1 -0
- package/cjs/domain/session/storeStrategies/sessionInCookie.d.ts +8 -0
- package/cjs/domain/session/storeStrategies/sessionInCookie.js +56 -0
- package/cjs/domain/session/storeStrategies/sessionInCookie.js.map +1 -0
- package/cjs/domain/session/storeStrategies/sessionInLocalStorage.d.ts +4 -0
- package/cjs/domain/session/storeStrategies/sessionInLocalStorage.js +41 -0
- package/cjs/domain/session/storeStrategies/sessionInLocalStorage.js.map +1 -0
- package/cjs/domain/session/storeStrategies/sessionStoreStrategy.d.ts +16 -0
- package/cjs/domain/session/storeStrategies/sessionStoreStrategy.js +5 -0
- package/cjs/domain/session/storeStrategies/sessionStoreStrategy.js.map +1 -0
- package/cjs/domain/synthetics/syntheticsWorkerValues.d.ts +12 -0
- package/cjs/domain/synthetics/syntheticsWorkerValues.js +31 -0
- package/cjs/domain/synthetics/syntheticsWorkerValues.js.map +1 -0
- package/cjs/domain/tags.d.ts +6 -0
- package/cjs/domain/tags.js +67 -0
- package/cjs/domain/tags.js.map +1 -0
- package/cjs/domain/telemetry/index.d.ts +4 -0
- package/cjs/domain/telemetry/index.js +28 -0
- package/cjs/domain/telemetry/index.js.map +1 -0
- package/cjs/domain/telemetry/rawTelemetryEvent.types.d.ts +18 -0
- package/cjs/domain/telemetry/rawTelemetryEvent.types.js +9 -0
- package/cjs/domain/telemetry/rawTelemetryEvent.types.js.map +1 -0
- package/cjs/domain/telemetry/telemetry.d.ts +56 -0
- package/cjs/domain/telemetry/telemetry.js +248 -0
- package/cjs/domain/telemetry/telemetry.js.map +1 -0
- package/cjs/domain/telemetry/telemetryEvent.types.d.ts +858 -0
- package/cjs/domain/telemetry/telemetryEvent.types.js +7 -0
- package/cjs/domain/telemetry/telemetryEvent.types.js.map +1 -0
- package/cjs/domain/trackingConsent.d.ts +13 -0
- package/cjs/domain/trackingConsent.js +28 -0
- package/cjs/domain/trackingConsent.js.map +1 -0
- package/cjs/index.d.ts +100 -0
- package/cjs/index.js +193 -0
- package/cjs/index.js.map +1 -0
- package/cjs/tools/abstractHooks.d.ts +24 -0
- package/cjs/tools/abstractHooks.js +41 -0
- package/cjs/tools/abstractHooks.js.map +1 -0
- package/cjs/tools/abstractLifeCycle.d.ts +23 -0
- package/cjs/tools/abstractLifeCycle.js +28 -0
- package/cjs/tools/abstractLifeCycle.js.map +1 -0
- package/cjs/tools/boundedBuffer.d.ts +16 -0
- package/cjs/tools/boundedBuffer.js +32 -0
- package/cjs/tools/boundedBuffer.js.map +1 -0
- package/cjs/tools/catchUserErrors.d.ts +1 -0
- package/cjs/tools/catchUserErrors.js +15 -0
- package/cjs/tools/catchUserErrors.js.map +1 -0
- package/cjs/tools/display.d.ts +38 -0
- package/cjs/tools/display.js +44 -0
- package/cjs/tools/display.js.map +1 -0
- package/cjs/tools/encoder.d.ts +54 -0
- package/cjs/tools/encoder.js +40 -0
- package/cjs/tools/encoder.js.map +1 -0
- package/cjs/tools/experimentalFeatures.d.ts +20 -0
- package/cjs/tools/experimentalFeatures.js +49 -0
- package/cjs/tools/experimentalFeatures.js.map +1 -0
- package/cjs/tools/getZoneJsOriginalValue.d.ts +19 -0
- package/cjs/tools/getZoneJsOriginalValue.js +29 -0
- package/cjs/tools/getZoneJsOriginalValue.js.map +1 -0
- package/cjs/tools/globalObject.d.ts +19 -0
- package/cjs/tools/globalObject.js +44 -0
- package/cjs/tools/globalObject.js.map +1 -0
- package/cjs/tools/instrumentMethod.d.ts +75 -0
- package/cjs/tools/instrumentMethod.js +118 -0
- package/cjs/tools/instrumentMethod.js.map +1 -0
- package/cjs/tools/matchOption.d.ts +8 -0
- package/cjs/tools/matchOption.js +35 -0
- package/cjs/tools/matchOption.js.map +1 -0
- package/cjs/tools/mergeInto.d.ts +25 -0
- package/cjs/tools/mergeInto.js +98 -0
- package/cjs/tools/mergeInto.js.map +1 -0
- package/cjs/tools/monitor.d.ts +9 -0
- package/cjs/tools/monitor.js +62 -0
- package/cjs/tools/monitor.js.map +1 -0
- package/cjs/tools/observable.d.ts +30 -0
- package/cjs/tools/observable.js +89 -0
- package/cjs/tools/observable.js.map +1 -0
- package/cjs/tools/queueMicrotask.d.ts +1 -0
- package/cjs/tools/queueMicrotask.js +17 -0
- package/cjs/tools/queueMicrotask.js.map +1 -0
- package/cjs/tools/readBytesFromStream.d.ts +11 -0
- package/cjs/tools/readBytesFromStream.js +63 -0
- package/cjs/tools/readBytesFromStream.js.map +1 -0
- package/cjs/tools/requestIdleCallback.d.ts +12 -0
- package/cjs/tools/requestIdleCallback.js +35 -0
- package/cjs/tools/requestIdleCallback.js.map +1 -0
- package/cjs/tools/sendToExtension.d.ts +3 -0
- package/cjs/tools/sendToExtension.js +11 -0
- package/cjs/tools/sendToExtension.js.map +1 -0
- package/cjs/tools/serialisation/context.d.ts +9 -0
- package/cjs/tools/serialisation/context.js +3 -0
- package/cjs/tools/serialisation/context.js.map +1 -0
- package/cjs/tools/serialisation/jsonStringify.d.ts +13 -0
- package/cjs/tools/serialisation/jsonStringify.js +48 -0
- package/cjs/tools/serialisation/jsonStringify.js.map +1 -0
- package/cjs/tools/serialisation/sanitize.d.ts +18 -0
- package/cjs/tools/serialisation/sanitize.js +188 -0
- package/cjs/tools/serialisation/sanitize.js.map +1 -0
- package/cjs/tools/stackTrace/computeStackTrace.d.ts +25 -0
- package/cjs/tools/stackTrace/computeStackTrace.js +187 -0
- package/cjs/tools/stackTrace/computeStackTrace.js.map +1 -0
- package/cjs/tools/stackTrace/handlingStack.d.ts +10 -0
- package/cjs/tools/stackTrace/handlingStack.js +46 -0
- package/cjs/tools/stackTrace/handlingStack.js.map +1 -0
- package/cjs/tools/taskQueue.d.ts +15 -0
- package/cjs/tools/taskQueue.js +54 -0
- package/cjs/tools/taskQueue.js.map +1 -0
- package/cjs/tools/timer.d.ts +5 -0
- package/cjs/tools/timer.js +22 -0
- package/cjs/tools/timer.js.map +1 -0
- package/cjs/tools/utils/arrayUtils.d.ts +3 -0
- package/cjs/tools/utils/arrayUtils.js +20 -0
- package/cjs/tools/utils/arrayUtils.js.map +1 -0
- package/cjs/tools/utils/browserDetection.d.ts +8 -0
- package/cjs/tools/utils/browserDetection.js +33 -0
- package/cjs/tools/utils/browserDetection.js.map +1 -0
- package/cjs/tools/utils/byteUtils.d.ts +8 -0
- package/cjs/tools/utils/byteUtils.js +30 -0
- package/cjs/tools/utils/byteUtils.js.map +1 -0
- package/cjs/tools/utils/functionUtils.d.ts +8 -0
- package/cjs/tools/utils/functionUtils.js +43 -0
- package/cjs/tools/utils/functionUtils.js.map +1 -0
- package/cjs/tools/utils/numberUtils.d.ts +9 -0
- package/cjs/tools/utils/numberUtils.js +24 -0
- package/cjs/tools/utils/numberUtils.js.map +1 -0
- package/cjs/tools/utils/objectUtils.d.ts +10 -0
- package/cjs/tools/utils/objectUtils.js +23 -0
- package/cjs/tools/utils/objectUtils.js.map +1 -0
- package/cjs/tools/utils/polyfills.d.ts +7 -0
- package/cjs/tools/utils/polyfills.js +23 -0
- package/cjs/tools/utils/polyfills.js.map +1 -0
- package/cjs/tools/utils/responseUtils.d.ts +2 -0
- package/cjs/tools/utils/responseUtils.js +17 -0
- package/cjs/tools/utils/responseUtils.js.map +1 -0
- package/cjs/tools/utils/stringUtils.d.ts +8 -0
- package/cjs/tools/utils/stringUtils.js +55 -0
- package/cjs/tools/utils/stringUtils.js.map +1 -0
- package/cjs/tools/utils/timeUtils.d.ts +53 -0
- package/cjs/tools/utils/timeUtils.js +101 -0
- package/cjs/tools/utils/timeUtils.js.map +1 -0
- package/cjs/tools/utils/timezone.d.ts +1 -0
- package/cjs/tools/utils/timezone.js +13 -0
- package/cjs/tools/utils/timezone.js.map +1 -0
- package/cjs/tools/utils/typeUtils.d.ts +4 -0
- package/cjs/tools/utils/typeUtils.js +16 -0
- package/cjs/tools/utils/typeUtils.js.map +1 -0
- package/cjs/tools/utils/urlPolyfill.d.ts +5 -0
- package/cjs/tools/utils/urlPolyfill.js +59 -0
- package/cjs/tools/utils/urlPolyfill.js.map +1 -0
- package/cjs/tools/valueHistory.d.ts +27 -0
- package/cjs/tools/valueHistory.js +104 -0
- package/cjs/tools/valueHistory.js.map +1 -0
- package/cjs/transport/batch.d.ts +16 -0
- package/cjs/transport/batch.js +108 -0
- package/cjs/transport/batch.js.map +1 -0
- package/cjs/transport/eventBridge.d.ts +21 -0
- package/cjs/transport/eventBridge.js +46 -0
- package/cjs/transport/eventBridge.js.map +1 -0
- package/cjs/transport/flushController.d.ts +58 -0
- package/cjs/transport/flushController.js +109 -0
- package/cjs/transport/flushController.js.map +1 -0
- package/cjs/transport/httpRequest.d.ts +51 -0
- package/cjs/transport/httpRequest.js +80 -0
- package/cjs/transport/httpRequest.js.map +1 -0
- package/cjs/transport/index.d.ts +7 -0
- package/cjs/transport/index.js +14 -0
- package/cjs/transport/index.js.map +1 -0
- package/cjs/transport/sendWithRetryStrategy.d.ts +41 -0
- package/cjs/transport/sendWithRetryStrategy.js +163 -0
- package/cjs/transport/sendWithRetryStrategy.js.map +1 -0
- package/esm/boot/displayAlreadyInitializedError.d.ts +2 -0
- package/esm/boot/displayAlreadyInitializedError.js +7 -0
- package/esm/boot/displayAlreadyInitializedError.js.map +1 -0
- package/esm/boot/init.d.ts +14 -0
- package/esm/boot/init.js +35 -0
- package/esm/boot/init.js.map +1 -0
- package/esm/browser/addEventListener.d.ts +87 -0
- package/esm/browser/addEventListener.js +51 -0
- package/esm/browser/addEventListener.js.map +1 -0
- package/esm/browser/browser.types.d.ts +51 -0
- package/esm/browser/browser.types.js +5 -0
- package/esm/browser/browser.types.js.map +1 -0
- package/esm/browser/cookie.d.ts +18 -0
- package/esm/browser/cookie.js +91 -0
- package/esm/browser/cookie.js.map +1 -0
- package/esm/browser/fetchObservable.d.ts +25 -0
- package/esm/browser/fetchObservable.js +75 -0
- package/esm/browser/fetchObservable.js.map +1 -0
- package/esm/browser/pageMayExitObservable.d.ts +14 -0
- package/esm/browser/pageMayExitObservable.js +40 -0
- package/esm/browser/pageMayExitObservable.js.map +1 -0
- package/esm/browser/runOnReadyState.d.ts +5 -0
- package/esm/browser/runOnReadyState.js +16 -0
- package/esm/browser/runOnReadyState.js.map +1 -0
- package/esm/browser/xhrObservable.d.ts +23 -0
- package/esm/browser/xhrObservable.js +80 -0
- package/esm/browser/xhrObservable.js.map +1 -0
- package/esm/domain/allowedTrackingOrigins.d.ts +4 -0
- package/esm/domain/allowedTrackingOrigins.js +21 -0
- package/esm/domain/allowedTrackingOrigins.js.map +1 -0
- package/esm/domain/bufferedData.d.ts +14 -0
- package/esm/domain/bufferedData.js +19 -0
- package/esm/domain/bufferedData.js.map +1 -0
- package/esm/domain/configuration/configuration.d.ts +303 -0
- package/esm/domain/configuration/configuration.js +146 -0
- package/esm/domain/configuration/configuration.js.map +1 -0
- package/esm/domain/configuration/endpointBuilder.d.ts +12 -0
- package/esm/domain/configuration/endpointBuilder.js +74 -0
- package/esm/domain/configuration/endpointBuilder.js.map +1 -0
- package/esm/domain/configuration/index.d.ts +5 -0
- package/esm/domain/configuration/index.js +4 -0
- package/esm/domain/configuration/index.js.map +1 -0
- package/esm/domain/configuration/transportConfiguration.d.ts +20 -0
- package/esm/domain/configuration/transportConfiguration.js +50 -0
- package/esm/domain/configuration/transportConfiguration.js.map +1 -0
- package/esm/domain/connectivity/connectivity.d.ts +14 -0
- package/esm/domain/connectivity/connectivity.js +11 -0
- package/esm/domain/connectivity/connectivity.js.map +1 -0
- package/esm/domain/connectivity/index.d.ts +1 -0
- package/esm/domain/connectivity/index.js +2 -0
- package/esm/domain/connectivity/index.js.map +1 -0
- package/esm/domain/console/consoleObservable.d.ts +21 -0
- package/esm/domain/console/consoleObservable.js +80 -0
- package/esm/domain/console/consoleObservable.js.map +1 -0
- package/esm/domain/context/contextConstants.d.ts +21 -0
- package/esm/domain/context/contextConstants.js +15 -0
- package/esm/domain/context/contextConstants.js.map +1 -0
- package/esm/domain/context/contextManager.d.ts +19 -0
- package/esm/domain/context/contextManager.js +57 -0
- package/esm/domain/context/contextManager.js.map +1 -0
- package/esm/domain/context/contextUtils.d.ts +5 -0
- package/esm/domain/context/contextUtils.js +13 -0
- package/esm/domain/context/contextUtils.js.map +1 -0
- package/esm/domain/context/defineContextMethod.d.ts +6 -0
- package/esm/domain/context/defineContextMethod.js +17 -0
- package/esm/domain/context/defineContextMethod.js.map +1 -0
- package/esm/domain/context/storeContextManager.d.ts +6 -0
- package/esm/domain/context/storeContextManager.js +35 -0
- package/esm/domain/context/storeContextManager.js.map +1 -0
- package/esm/domain/contexts/accountContext.d.ts +26 -0
- package/esm/domain/contexts/accountContext.js +29 -0
- package/esm/domain/contexts/accountContext.js.map +1 -0
- package/esm/domain/contexts/globalContext.d.ts +18 -0
- package/esm/domain/contexts/globalContext.js +17 -0
- package/esm/domain/contexts/globalContext.js.map +1 -0
- package/esm/domain/contexts/rumInternalContext.type.d.ts +14 -0
- package/esm/domain/contexts/rumInternalContext.type.js +2 -0
- package/esm/domain/contexts/rumInternalContext.type.js.map +1 -0
- package/esm/domain/contexts/userContext.d.ts +29 -0
- package/esm/domain/contexts/userContext.js +41 -0
- package/esm/domain/contexts/userContext.js.map +1 -0
- package/esm/domain/deflate/deflate.types.d.ts +40 -0
- package/esm/domain/deflate/deflate.types.js +2 -0
- package/esm/domain/deflate/deflate.types.js.map +1 -0
- package/esm/domain/deflate/index.d.ts +1 -0
- package/esm/domain/deflate/index.js +2 -0
- package/esm/domain/deflate/index.js.map +1 -0
- package/esm/domain/error/error.d.ts +23 -0
- package/esm/domain/error/error.js +65 -0
- package/esm/domain/error/error.js.map +1 -0
- package/esm/domain/error/error.types.d.ts +47 -0
- package/esm/domain/error/error.types.js +10 -0
- package/esm/domain/error/error.types.js.map +1 -0
- package/esm/domain/error/trackRuntimeError.d.ts +11 -0
- package/esm/domain/error/trackRuntimeError.js +43 -0
- package/esm/domain/error/trackRuntimeError.js.map +1 -0
- package/esm/domain/eventRateLimiter/createEventRateLimiter.d.ts +5 -0
- package/esm/domain/eventRateLimiter/createEventRateLimiter.js +36 -0
- package/esm/domain/eventRateLimiter/createEventRateLimiter.js.map +1 -0
- package/esm/domain/extension/extensionUtils.d.ts +10 -0
- package/esm/domain/extension/extensionUtils.js +25 -0
- package/esm/domain/extension/extensionUtils.js.map +1 -0
- package/esm/domain/intakeSites.d.ts +8 -0
- package/esm/domain/intakeSites.js +8 -0
- package/esm/domain/intakeSites.js.map +1 -0
- package/esm/domain/report/browser.types.d.ts +34 -0
- package/esm/domain/report/browser.types.js +2 -0
- package/esm/domain/report/browser.types.js.map +1 -0
- package/esm/domain/report/reportObservable.d.ts +14 -0
- package/esm/domain/report/reportObservable.js +95 -0
- package/esm/domain/report/reportObservable.js.map +1 -0
- package/esm/domain/resourceUtils.d.ts +18 -0
- package/esm/domain/resourceUtils.js +17 -0
- package/esm/domain/resourceUtils.js.map +1 -0
- package/esm/domain/session/oldCookiesMigration.d.ts +11 -0
- package/esm/domain/session/oldCookiesMigration.js +36 -0
- package/esm/domain/session/oldCookiesMigration.js.map +1 -0
- package/esm/domain/session/sessionConstants.d.ts +15 -0
- package/esm/domain/session/sessionConstants.js +13 -0
- package/esm/domain/session/sessionConstants.js.map +1 -0
- package/esm/domain/session/sessionManager.d.ts +28 -0
- package/esm/domain/session/sessionManager.js +180 -0
- package/esm/domain/session/sessionManager.js.map +1 -0
- package/esm/domain/session/sessionState.d.ts +16 -0
- package/esm/domain/session/sessionState.js +66 -0
- package/esm/domain/session/sessionState.js.map +1 -0
- package/esm/domain/session/sessionStateValidation.d.ts +3 -0
- package/esm/domain/session/sessionStateValidation.js +7 -0
- package/esm/domain/session/sessionStateValidation.js.map +1 -0
- package/esm/domain/session/sessionStore.d.ts +38 -0
- package/esm/domain/session/sessionStore.js +175 -0
- package/esm/domain/session/sessionStore.js.map +1 -0
- package/esm/domain/session/sessionStoreOperations.d.ts +12 -0
- package/esm/domain/session/sessionStoreOperations.js +114 -0
- package/esm/domain/session/sessionStoreOperations.js.map +1 -0
- package/esm/domain/session/storeStrategies/sessionInCookie.d.ts +8 -0
- package/esm/domain/session/storeStrategies/sessionInCookie.js +50 -0
- package/esm/domain/session/storeStrategies/sessionInCookie.js.map +1 -0
- package/esm/domain/session/storeStrategies/sessionInLocalStorage.d.ts +4 -0
- package/esm/domain/session/storeStrategies/sessionInLocalStorage.js +37 -0
- package/esm/domain/session/storeStrategies/sessionInLocalStorage.js.map +1 -0
- package/esm/domain/session/storeStrategies/sessionStoreStrategy.d.ts +16 -0
- package/esm/domain/session/storeStrategies/sessionStoreStrategy.js +2 -0
- package/esm/domain/session/storeStrategies/sessionStoreStrategy.js.map +1 -0
- package/esm/domain/synthetics/syntheticsWorkerValues.d.ts +12 -0
- package/esm/domain/synthetics/syntheticsWorkerValues.js +24 -0
- package/esm/domain/synthetics/syntheticsWorkerValues.js.map +1 -0
- package/esm/domain/tags.d.ts +6 -0
- package/esm/domain/tags.js +60 -0
- package/esm/domain/tags.js.map +1 -0
- package/esm/domain/telemetry/index.d.ts +4 -0
- package/esm/domain/telemetry/index.js +3 -0
- package/esm/domain/telemetry/index.js.map +1 -0
- package/esm/domain/telemetry/rawTelemetryEvent.types.d.ts +18 -0
- package/esm/domain/telemetry/rawTelemetryEvent.types.js +6 -0
- package/esm/domain/telemetry/rawTelemetryEvent.types.js.map +1 -0
- package/esm/domain/telemetry/telemetry.d.ts +56 -0
- package/esm/domain/telemetry/telemetry.js +235 -0
- package/esm/domain/telemetry/telemetry.js.map +1 -0
- package/esm/domain/telemetry/telemetryEvent.types.d.ts +858 -0
- package/esm/domain/telemetry/telemetryEvent.types.js +6 -0
- package/esm/domain/telemetry/telemetryEvent.types.js.map +1 -0
- package/esm/domain/trackingConsent.d.ts +13 -0
- package/esm/domain/trackingConsent.js +24 -0
- package/esm/domain/trackingConsent.js.map +1 -0
- package/esm/index.d.ts +100 -0
- package/esm/index.js +76 -0
- package/esm/index.js.map +1 -0
- package/esm/tools/abstractHooks.d.ts +24 -0
- package/esm/tools/abstractHooks.js +37 -0
- package/esm/tools/abstractHooks.js.map +1 -0
- package/esm/tools/abstractLifeCycle.d.ts +23 -0
- package/esm/tools/abstractLifeCycle.js +24 -0
- package/esm/tools/abstractLifeCycle.js.map +1 -0
- package/esm/tools/boundedBuffer.d.ts +16 -0
- package/esm/tools/boundedBuffer.js +29 -0
- package/esm/tools/boundedBuffer.js.map +1 -0
- package/esm/tools/catchUserErrors.d.ts +1 -0
- package/esm/tools/catchUserErrors.js +12 -0
- package/esm/tools/catchUserErrors.js.map +1 -0
- package/esm/tools/display.d.ts +38 -0
- package/esm/tools/display.js +41 -0
- package/esm/tools/display.js.map +1 -0
- package/esm/tools/encoder.d.ts +54 -0
- package/esm/tools/encoder.js +37 -0
- package/esm/tools/encoder.js.map +1 -0
- package/esm/tools/experimentalFeatures.d.ts +20 -0
- package/esm/tools/experimentalFeatures.js +41 -0
- package/esm/tools/experimentalFeatures.js.map +1 -0
- package/esm/tools/getZoneJsOriginalValue.d.ts +19 -0
- package/esm/tools/getZoneJsOriginalValue.js +26 -0
- package/esm/tools/getZoneJsOriginalValue.js.map +1 -0
- package/esm/tools/globalObject.d.ts +19 -0
- package/esm/tools/globalObject.js +40 -0
- package/esm/tools/globalObject.js.map +1 -0
- package/esm/tools/instrumentMethod.d.ts +75 -0
- package/esm/tools/instrumentMethod.js +114 -0
- package/esm/tools/instrumentMethod.js.map +1 -0
- package/esm/tools/matchOption.d.ts +8 -0
- package/esm/tools/matchOption.js +31 -0
- package/esm/tools/matchOption.js.map +1 -0
- package/esm/tools/mergeInto.d.ts +25 -0
- package/esm/tools/mergeInto.js +93 -0
- package/esm/tools/mergeInto.js.map +1 -0
- package/esm/tools/monitor.d.ts +9 -0
- package/esm/tools/monitor.js +52 -0
- package/esm/tools/monitor.js.map +1 -0
- package/esm/tools/observable.d.ts +30 -0
- package/esm/tools/observable.js +83 -0
- package/esm/tools/observable.js.map +1 -0
- package/esm/tools/queueMicrotask.d.ts +1 -0
- package/esm/tools/queueMicrotask.js +14 -0
- package/esm/tools/queueMicrotask.js.map +1 -0
- package/esm/tools/readBytesFromStream.d.ts +11 -0
- package/esm/tools/readBytesFromStream.js +60 -0
- package/esm/tools/readBytesFromStream.js.map +1 -0
- package/esm/tools/requestIdleCallback.d.ts +12 -0
- package/esm/tools/requestIdleCallback.js +30 -0
- package/esm/tools/requestIdleCallback.js.map +1 -0
- package/esm/tools/sendToExtension.d.ts +3 -0
- package/esm/tools/sendToExtension.js +8 -0
- package/esm/tools/sendToExtension.js.map +1 -0
- package/esm/tools/serialisation/context.d.ts +9 -0
- package/esm/tools/serialisation/context.js +2 -0
- package/esm/tools/serialisation/context.js.map +1 -0
- package/esm/tools/serialisation/jsonStringify.d.ts +13 -0
- package/esm/tools/serialisation/jsonStringify.js +44 -0
- package/esm/tools/serialisation/jsonStringify.js.map +1 -0
- package/esm/tools/serialisation/sanitize.d.ts +18 -0
- package/esm/tools/serialisation/sanitize.js +185 -0
- package/esm/tools/serialisation/sanitize.js.map +1 -0
- package/esm/tools/stackTrace/computeStackTrace.d.ts +25 -0
- package/esm/tools/stackTrace/computeStackTrace.js +183 -0
- package/esm/tools/stackTrace/computeStackTrace.js.map +1 -0
- package/esm/tools/stackTrace/handlingStack.d.ts +10 -0
- package/esm/tools/stackTrace/handlingStack.js +41 -0
- package/esm/tools/stackTrace/handlingStack.js.map +1 -0
- package/esm/tools/taskQueue.d.ts +15 -0
- package/esm/tools/taskQueue.js +50 -0
- package/esm/tools/taskQueue.js.map +1 -0
- package/esm/tools/timer.d.ts +5 -0
- package/esm/tools/timer.js +16 -0
- package/esm/tools/timer.js.map +1 -0
- package/esm/tools/utils/arrayUtils.d.ts +3 -0
- package/esm/tools/utils/arrayUtils.js +15 -0
- package/esm/tools/utils/arrayUtils.js.map +1 -0
- package/esm/tools/utils/browserDetection.d.ts +8 -0
- package/esm/tools/utils/browserDetection.js +28 -0
- package/esm/tools/utils/browserDetection.js.map +1 -0
- package/esm/tools/utils/byteUtils.d.ts +8 -0
- package/esm/tools/utils/byteUtils.js +25 -0
- package/esm/tools/utils/byteUtils.js.map +1 -0
- package/esm/tools/utils/functionUtils.d.ts +8 -0
- package/esm/tools/utils/functionUtils.js +39 -0
- package/esm/tools/utils/functionUtils.js.map +1 -0
- package/esm/tools/utils/numberUtils.d.ts +9 -0
- package/esm/tools/utils/numberUtils.js +18 -0
- package/esm/tools/utils/numberUtils.js.map +1 -0
- package/esm/tools/utils/objectUtils.d.ts +10 -0
- package/esm/tools/utils/objectUtils.js +17 -0
- package/esm/tools/utils/objectUtils.js.map +1 -0
- package/esm/tools/utils/polyfills.d.ts +7 -0
- package/esm/tools/utils/polyfills.js +18 -0
- package/esm/tools/utils/polyfills.js.map +1 -0
- package/esm/tools/utils/responseUtils.d.ts +2 -0
- package/esm/tools/utils/responseUtils.js +13 -0
- package/esm/tools/utils/responseUtils.js.map +1 -0
- package/esm/tools/utils/stringUtils.d.ts +8 -0
- package/esm/tools/utils/stringUtils.js +49 -0
- package/esm/tools/utils/stringUtils.js.map +1 -0
- package/esm/tools/utils/timeUtils.d.ts +53 -0
- package/esm/tools/utils/timeUtils.js +84 -0
- package/esm/tools/utils/timeUtils.js.map +1 -0
- package/esm/tools/utils/timezone.d.ts +1 -0
- package/esm/tools/utils/timezone.js +10 -0
- package/esm/tools/utils/timezone.js.map +1 -0
- package/esm/tools/utils/typeUtils.d.ts +4 -0
- package/esm/tools/utils/typeUtils.js +13 -0
- package/esm/tools/utils/typeUtils.js.map +1 -0
- package/esm/tools/utils/urlPolyfill.d.ts +5 -0
- package/esm/tools/utils/urlPolyfill.js +52 -0
- package/esm/tools/utils/urlPolyfill.js.map +1 -0
- package/esm/tools/valueHistory.d.ts +27 -0
- package/esm/tools/valueHistory.js +100 -0
- package/esm/tools/valueHistory.js.map +1 -0
- package/esm/transport/batch.d.ts +16 -0
- package/esm/transport/batch.js +105 -0
- package/esm/transport/batch.js.map +1 -0
- package/esm/transport/eventBridge.d.ts +21 -0
- package/esm/transport/eventBridge.js +41 -0
- package/esm/transport/eventBridge.js.map +1 -0
- package/esm/transport/flushController.d.ts +58 -0
- package/esm/transport/flushController.js +106 -0
- package/esm/transport/flushController.js.map +1 -0
- package/esm/transport/httpRequest.d.ts +51 -0
- package/esm/transport/httpRequest.js +75 -0
- package/esm/transport/httpRequest.js.map +1 -0
- package/esm/transport/index.d.ts +7 -0
- package/esm/transport/index.js +5 -0
- package/esm/transport/index.js.map +1 -0
- package/esm/transport/sendWithRetryStrategy.d.ts +41 -0
- package/esm/transport/sendWithRetryStrategy.js +158 -0
- package/esm/transport/sendWithRetryStrategy.js.map +1 -0
- package/package.json +31 -0
- package/src/boot/displayAlreadyInitializedError.ts +8 -0
- package/src/boot/init.ts +55 -0
- package/src/browser/addEventListener.ts +145 -0
- package/src/browser/browser.types.ts +82 -0
- package/src/browser/cookie.ts +107 -0
- package/src/browser/fetchObservable.ts +127 -0
- package/src/browser/pageMayExitObservable.ts +56 -0
- package/src/browser/runOnReadyState.ts +25 -0
- package/src/browser/xhrObservable.ts +130 -0
- package/src/domain/allowedTrackingOrigins.ts +30 -0
- package/src/domain/bufferedData.ts +32 -0
- package/src/domain/configuration/configuration.ts +472 -0
- package/src/domain/configuration/endpointBuilder.ts +119 -0
- package/src/domain/configuration/index.ts +11 -0
- package/src/domain/configuration/transportConfiguration.ts +78 -0
- package/src/domain/connectivity/connectivity.ts +31 -0
- package/src/domain/connectivity/index.ts +1 -0
- package/src/domain/console/consoleObservable.ts +118 -0
- package/src/domain/context/contextConstants.ts +27 -0
- package/src/domain/context/contextManager.ts +85 -0
- package/src/domain/context/contextUtils.ts +14 -0
- package/src/domain/context/defineContextMethod.ts +31 -0
- package/src/domain/context/storeContextManager.ts +55 -0
- package/src/domain/contexts/accountContext.ts +47 -0
- package/src/domain/contexts/globalContext.ts +30 -0
- package/src/domain/contexts/rumInternalContext.type.ts +15 -0
- package/src/domain/contexts/userContext.ts +64 -0
- package/src/domain/deflate/deflate.types.ts +57 -0
- package/src/domain/deflate/index.ts +1 -0
- package/src/domain/error/error.ts +103 -0
- package/src/domain/error/error.types.ts +64 -0
- package/src/domain/error/trackRuntimeError.ts +50 -0
- package/src/domain/eventRateLimiter/createEventRateLimiter.ts +46 -0
- package/src/domain/extension/extensionUtils.ts +28 -0
- package/src/domain/intakeSites.ts +17 -0
- package/src/domain/report/browser.types.ts +38 -0
- package/src/domain/report/reportObservable.ts +133 -0
- package/src/domain/resourceUtils.ts +21 -0
- package/src/domain/session/README.md +193 -0
- package/src/domain/session/oldCookiesMigration.ts +42 -0
- package/src/domain/session/sessionConstants.ts +19 -0
- package/src/domain/session/sessionManager.ts +244 -0
- package/src/domain/session/sessionState.ts +88 -0
- package/src/domain/session/sessionStateValidation.ts +9 -0
- package/src/domain/session/sessionStore.ts +244 -0
- package/src/domain/session/sessionStoreOperations.ts +131 -0
- package/src/domain/session/storeStrategies/sessionInCookie.ts +85 -0
- package/src/domain/session/storeStrategies/sessionInLocalStorage.ts +44 -0
- package/src/domain/session/storeStrategies/sessionStoreStrategy.ts +16 -0
- package/src/domain/synthetics/syntheticsWorkerValues.ts +38 -0
- package/src/domain/tags.ts +76 -0
- package/src/domain/telemetry/index.ts +22 -0
- package/src/domain/telemetry/rawTelemetryEvent.types.ts +22 -0
- package/src/domain/telemetry/telemetry.ts +345 -0
- package/src/domain/telemetry/telemetryEvent.types.ts +899 -0
- package/src/domain/trackingConsent.ts +34 -0
- package/src/index.ts +164 -0
- package/src/tools/abstractHooks.ts +72 -0
- package/src/tools/abstractLifeCycle.ts +46 -0
- package/src/tools/boundedBuffer.ts +45 -0
- package/src/tools/catchUserErrors.ts +11 -0
- package/src/tools/display.ts +56 -0
- package/src/tools/encoder.ts +103 -0
- package/src/tools/experimentalFeatures.ts +51 -0
- package/src/tools/getZoneJsOriginalValue.ts +38 -0
- package/src/tools/globalObject.ts +51 -0
- package/src/tools/instrumentMethod.ts +170 -0
- package/src/tools/matchOption.ts +31 -0
- package/src/tools/mergeInto.ts +177 -0
- package/src/tools/monitor.ts +72 -0
- package/src/tools/observable.ts +104 -0
- package/src/tools/queueMicrotask.ts +13 -0
- package/src/tools/readBytesFromStream.ts +77 -0
- package/src/tools/requestIdleCallback.ts +40 -0
- package/src/tools/sendToExtension.ts +14 -0
- package/src/tools/serialisation/context.ts +11 -0
- package/src/tools/serialisation/jsonStringify.ts +53 -0
- package/src/tools/serialisation/sanitize.ts +273 -0
- package/src/tools/stackTrace/computeStackTrace.ts +250 -0
- package/src/tools/stackTrace/handlingStack.ts +48 -0
- package/src/tools/taskQueue.ts +63 -0
- package/src/tools/timer.ts +21 -0
- package/src/tools/utils/arrayUtils.ts +15 -0
- package/src/tools/utils/browserDetection.ts +39 -0
- package/src/tools/utils/byteUtils.ts +35 -0
- package/src/tools/utils/functionUtils.ts +45 -0
- package/src/tools/utils/numberUtils.ts +20 -0
- package/src/tools/utils/objectUtils.ts +19 -0
- package/src/tools/utils/polyfills.ts +23 -0
- package/src/tools/utils/responseUtils.ts +12 -0
- package/src/tools/utils/stringUtils.ts +52 -0
- package/src/tools/utils/timeUtils.ts +117 -0
- package/src/tools/utils/timezone.ts +9 -0
- package/src/tools/utils/typeUtils.ts +12 -0
- package/src/tools/utils/urlPolyfill.ts +56 -0
- package/src/tools/valueHistory.ts +151 -0
- package/src/transport/batch.ts +144 -0
- package/src/transport/eventBridge.ts +61 -0
- package/src/transport/flushController.ts +144 -0
- package/src/transport/httpRequest.ts +164 -0
- package/src/transport/index.ts +7 -0
- package/src/transport/sendWithRetryStrategy.ts +222 -0
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import type { Payload } from '../../transport'
|
|
2
|
+
import { timeStampNow } from '../../tools/utils/timeUtils'
|
|
3
|
+
import { normalizeUrl } from '../../tools/utils/urlPolyfill'
|
|
4
|
+
import { generateUUID } from '../../tools/utils/stringUtils'
|
|
5
|
+
import { INTAKE_SITE_FED_STAGING, INTAKE_SITE_US1, PCI_INTAKE_HOST_US1 } from '../intakeSites'
|
|
6
|
+
import type { InitConfiguration } from './configuration'
|
|
7
|
+
|
|
8
|
+
// replaced at build time
|
|
9
|
+
declare const __BUILD_ENV__SDK_VERSION__: string
|
|
10
|
+
|
|
11
|
+
export type TrackType = 'logs' | 'rum' | 'replay' | 'profile' | 'exposures'
|
|
12
|
+
export type ApiType =
|
|
13
|
+
| 'fetch-keepalive'
|
|
14
|
+
| 'fetch'
|
|
15
|
+
| 'beacon'
|
|
16
|
+
// 'manual' reflects that the request have been sent manually, outside of the SDK (ex: via curl or
|
|
17
|
+
// a Node.js script).
|
|
18
|
+
| 'manual'
|
|
19
|
+
|
|
20
|
+
export type EndpointBuilder = ReturnType<typeof createEndpointBuilder>
|
|
21
|
+
|
|
22
|
+
export function createEndpointBuilder(
|
|
23
|
+
initConfiguration: InitConfiguration,
|
|
24
|
+
trackType: TrackType,
|
|
25
|
+
extraParameters?: string[]
|
|
26
|
+
) {
|
|
27
|
+
const buildUrlWithParameters = createEndpointUrlWithParametersBuilder(initConfiguration, trackType)
|
|
28
|
+
|
|
29
|
+
return {
|
|
30
|
+
build(api: ApiType, payload: Payload) {
|
|
31
|
+
const parameters = buildEndpointParameters(initConfiguration, trackType, api, payload, extraParameters)
|
|
32
|
+
return buildUrlWithParameters(parameters)
|
|
33
|
+
},
|
|
34
|
+
trackType,
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Create a function used to build a full endpoint url from provided parameters. The goal of this
|
|
40
|
+
* function is to pre-compute some parts of the URL to avoid re-computing everything on every
|
|
41
|
+
* request, as only parameters are changing.
|
|
42
|
+
*/
|
|
43
|
+
function createEndpointUrlWithParametersBuilder(
|
|
44
|
+
initConfiguration: InitConfiguration,
|
|
45
|
+
trackType: TrackType
|
|
46
|
+
): (parameters: string) => string {
|
|
47
|
+
const path = `/api/v2/${trackType}`
|
|
48
|
+
const proxy = initConfiguration.proxy
|
|
49
|
+
if (typeof proxy === 'string') {
|
|
50
|
+
const normalizedProxyUrl = normalizeUrl(proxy)
|
|
51
|
+
return (parameters) => `${normalizedProxyUrl}?ddforward=${encodeURIComponent(`${path}?${parameters}`)}`
|
|
52
|
+
}
|
|
53
|
+
if (typeof proxy === 'function') {
|
|
54
|
+
return (parameters) => proxy({ path, parameters })
|
|
55
|
+
}
|
|
56
|
+
const host = buildEndpointHost(trackType, initConfiguration)
|
|
57
|
+
return (parameters) => `https://${host}${path}?${parameters}`
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export function buildEndpointHost(
|
|
61
|
+
trackType: TrackType,
|
|
62
|
+
initConfiguration: InitConfiguration & { usePciIntake?: boolean }
|
|
63
|
+
) {
|
|
64
|
+
const { site = INTAKE_SITE_US1, internalAnalyticsSubdomain } = initConfiguration
|
|
65
|
+
|
|
66
|
+
if (trackType === 'logs' && initConfiguration.usePciIntake && site === INTAKE_SITE_US1) {
|
|
67
|
+
return PCI_INTAKE_HOST_US1
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
if (internalAnalyticsSubdomain && site === INTAKE_SITE_US1) {
|
|
71
|
+
return `${internalAnalyticsSubdomain}.${INTAKE_SITE_US1}`
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
if (site === INTAKE_SITE_FED_STAGING) {
|
|
75
|
+
return `http-intake.logs.${site}`
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
const domainParts = site.split('.')
|
|
79
|
+
const extension = domainParts.pop()
|
|
80
|
+
return `browser-intake-${domainParts.join('-')}.${extension!}`
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Build parameters to be used for an intake request. Parameters should be re-built for each
|
|
85
|
+
* request, as they change randomly.
|
|
86
|
+
*/
|
|
87
|
+
function buildEndpointParameters(
|
|
88
|
+
{ clientToken, internalAnalyticsSubdomain, source = 'browser' }: InitConfiguration,
|
|
89
|
+
trackType: TrackType,
|
|
90
|
+
api: ApiType,
|
|
91
|
+
{ retry, encoding }: Payload,
|
|
92
|
+
extraParameters: string[] = []
|
|
93
|
+
) {
|
|
94
|
+
const parameters = [
|
|
95
|
+
`ddsource=${source}`,
|
|
96
|
+
`dd-api-key=${clientToken}`,
|
|
97
|
+
`dd-evp-origin-version=${encodeURIComponent(__BUILD_ENV__SDK_VERSION__)}`,
|
|
98
|
+
'dd-evp-origin=browser',
|
|
99
|
+
`dd-request-id=${generateUUID()}`,
|
|
100
|
+
].concat(extraParameters)
|
|
101
|
+
|
|
102
|
+
if (encoding) {
|
|
103
|
+
parameters.push(`dd-evp-encoding=${encoding}`)
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
if (trackType === 'rum') {
|
|
107
|
+
parameters.push(`batch_time=${timeStampNow()}`, `_dd.api=${api}`)
|
|
108
|
+
|
|
109
|
+
if (retry) {
|
|
110
|
+
parameters.push(`_dd.retry_count=${retry.count}`, `_dd.retry_after=${retry.lastFailureStatus}`)
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
if (internalAnalyticsSubdomain) {
|
|
115
|
+
parameters.reverse()
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
return parameters.join('&')
|
|
119
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export type { Configuration, InitConfiguration, ProxyFn } from './configuration'
|
|
2
|
+
export {
|
|
3
|
+
DefaultPrivacyLevel,
|
|
4
|
+
TraceContextInjection,
|
|
5
|
+
isSampleRate,
|
|
6
|
+
validateAndBuildConfiguration,
|
|
7
|
+
serializeConfiguration,
|
|
8
|
+
} from './configuration'
|
|
9
|
+
export type { EndpointBuilder, TrackType } from './endpointBuilder'
|
|
10
|
+
export { createEndpointBuilder, buildEndpointHost } from './endpointBuilder'
|
|
11
|
+
export { computeTransportConfiguration, isIntakeUrl } from './transportConfiguration'
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import type { Site } from '../intakeSites'
|
|
2
|
+
import { INTAKE_SITE_US1, INTAKE_URL_PARAMETERS } from '../intakeSites'
|
|
3
|
+
import type { InitConfiguration } from './configuration'
|
|
4
|
+
import type { EndpointBuilder } from './endpointBuilder'
|
|
5
|
+
import { createEndpointBuilder } from './endpointBuilder'
|
|
6
|
+
|
|
7
|
+
export interface TransportConfiguration {
|
|
8
|
+
logsEndpointBuilder: EndpointBuilder
|
|
9
|
+
rumEndpointBuilder: EndpointBuilder
|
|
10
|
+
sessionReplayEndpointBuilder: EndpointBuilder
|
|
11
|
+
profilingEndpointBuilder: EndpointBuilder
|
|
12
|
+
exposuresEndpointBuilder: EndpointBuilder
|
|
13
|
+
datacenter?: string | undefined
|
|
14
|
+
replica?: ReplicaConfiguration
|
|
15
|
+
site: Site
|
|
16
|
+
source: 'browser' | 'flutter' | 'unity'
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export interface ReplicaConfiguration {
|
|
20
|
+
logsEndpointBuilder: EndpointBuilder
|
|
21
|
+
rumEndpointBuilder: EndpointBuilder
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export function computeTransportConfiguration(initConfiguration: InitConfiguration): TransportConfiguration {
|
|
25
|
+
const site = initConfiguration.site || INTAKE_SITE_US1
|
|
26
|
+
const source = validateSource(initConfiguration.source)
|
|
27
|
+
|
|
28
|
+
const endpointBuilders = computeEndpointBuilders({ ...initConfiguration, site, source })
|
|
29
|
+
const replicaConfiguration = computeReplicaConfiguration({ ...initConfiguration, site, source })
|
|
30
|
+
|
|
31
|
+
return {
|
|
32
|
+
replica: replicaConfiguration,
|
|
33
|
+
site,
|
|
34
|
+
source,
|
|
35
|
+
...endpointBuilders,
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
function validateSource(source: string | undefined) {
|
|
40
|
+
if (source === 'flutter' || source === 'unity') {
|
|
41
|
+
return source
|
|
42
|
+
}
|
|
43
|
+
return 'browser'
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
function computeEndpointBuilders(initConfiguration: InitConfiguration) {
|
|
47
|
+
return {
|
|
48
|
+
logsEndpointBuilder: createEndpointBuilder(initConfiguration, 'logs'),
|
|
49
|
+
rumEndpointBuilder: createEndpointBuilder(initConfiguration, 'rum'),
|
|
50
|
+
profilingEndpointBuilder: createEndpointBuilder(initConfiguration, 'profile'),
|
|
51
|
+
sessionReplayEndpointBuilder: createEndpointBuilder(initConfiguration, 'replay'),
|
|
52
|
+
exposuresEndpointBuilder: createEndpointBuilder(initConfiguration, 'exposures'),
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
function computeReplicaConfiguration(initConfiguration: InitConfiguration): ReplicaConfiguration | undefined {
|
|
57
|
+
if (!initConfiguration.replica) {
|
|
58
|
+
return
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
const replicaConfiguration: InitConfiguration = {
|
|
62
|
+
...initConfiguration,
|
|
63
|
+
site: INTAKE_SITE_US1,
|
|
64
|
+
clientToken: initConfiguration.replica.clientToken,
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
return {
|
|
68
|
+
logsEndpointBuilder: createEndpointBuilder(replicaConfiguration, 'logs'),
|
|
69
|
+
rumEndpointBuilder: createEndpointBuilder(replicaConfiguration, 'rum', [
|
|
70
|
+
`application.id=${initConfiguration.replica.applicationId}`,
|
|
71
|
+
]),
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export function isIntakeUrl(url: string): boolean {
|
|
76
|
+
// check if tags is present in the query string
|
|
77
|
+
return INTAKE_URL_PARAMETERS.every((param) => url.includes(param))
|
|
78
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { globalObject } from '../../tools/globalObject'
|
|
2
|
+
|
|
3
|
+
export type NetworkInterface = 'bluetooth' | 'cellular' | 'ethernet' | 'none' | 'wifi' | 'wimax' | 'other' | 'unknown'
|
|
4
|
+
export type EffectiveType = 'slow-2g' | '2g' | '3g' | '4g'
|
|
5
|
+
|
|
6
|
+
interface BrowserNavigator extends Navigator {
|
|
7
|
+
connection?: NetworkInformation
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export interface NetworkInformation {
|
|
11
|
+
type?: NetworkInterface
|
|
12
|
+
effectiveType?: EffectiveType
|
|
13
|
+
saveData: boolean
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export interface Connectivity {
|
|
17
|
+
status: 'connected' | 'not_connected'
|
|
18
|
+
interfaces?: NetworkInterface[]
|
|
19
|
+
effective_type?: EffectiveType
|
|
20
|
+
[key: string]: unknown
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export function getConnectivity(): Connectivity {
|
|
24
|
+
const navigator = globalObject.navigator as BrowserNavigator
|
|
25
|
+
|
|
26
|
+
return {
|
|
27
|
+
status: navigator.onLine ? 'connected' : 'not_connected',
|
|
28
|
+
interfaces: navigator.connection && navigator.connection.type ? [navigator.connection.type] : undefined,
|
|
29
|
+
effective_type: navigator.connection?.effectiveType,
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './connectivity'
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import { isError, computeRawError } from '../error/error'
|
|
2
|
+
import { mergeObservables, Observable } from '../../tools/observable'
|
|
3
|
+
import { ConsoleApiName, globalConsole } from '../../tools/display'
|
|
4
|
+
import { callMonitored } from '../../tools/monitor'
|
|
5
|
+
import { sanitize } from '../../tools/serialisation/sanitize'
|
|
6
|
+
import { jsonStringify } from '../../tools/serialisation/jsonStringify'
|
|
7
|
+
import type { RawError } from '../error/error.types'
|
|
8
|
+
import { ErrorHandling, ErrorSource, NonErrorPrefix } from '../error/error.types'
|
|
9
|
+
import { computeStackTrace } from '../../tools/stackTrace/computeStackTrace'
|
|
10
|
+
import { createHandlingStack, formatErrorMessage } from '../../tools/stackTrace/handlingStack'
|
|
11
|
+
import { clocksNow } from '../../tools/utils/timeUtils'
|
|
12
|
+
|
|
13
|
+
export type ConsoleLog = NonErrorConsoleLog | ErrorConsoleLog
|
|
14
|
+
|
|
15
|
+
interface NonErrorConsoleLog extends ConsoleLogBase {
|
|
16
|
+
api: Exclude<ConsoleApiName, typeof ConsoleApiName.error>
|
|
17
|
+
error: undefined
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export interface ErrorConsoleLog extends ConsoleLogBase {
|
|
21
|
+
api: typeof ConsoleApiName.error
|
|
22
|
+
error: RawError
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
interface ConsoleLogBase {
|
|
26
|
+
message: string
|
|
27
|
+
api: ConsoleApiName
|
|
28
|
+
handlingStack: string
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
type ConsoleLogForApi<T extends ConsoleApiName> = T extends typeof ConsoleApiName.error
|
|
32
|
+
? ErrorConsoleLog
|
|
33
|
+
: NonErrorConsoleLog
|
|
34
|
+
|
|
35
|
+
let consoleObservablesByApi: { [K in ConsoleApiName]?: Observable<ConsoleLogForApi<K>> } = {}
|
|
36
|
+
|
|
37
|
+
export function initConsoleObservable<T extends ConsoleApiName[]>(apis: T): Observable<ConsoleLogForApi<T[number]>> {
|
|
38
|
+
const consoleObservables = apis.map((api) => {
|
|
39
|
+
if (!consoleObservablesByApi[api]) {
|
|
40
|
+
consoleObservablesByApi[api] = createConsoleObservable(api) as any // we are sure that the observable created for this api will yield the expected ConsoleLog type
|
|
41
|
+
}
|
|
42
|
+
return consoleObservablesByApi[api] as unknown as Observable<ConsoleLogForApi<T[number]>>
|
|
43
|
+
})
|
|
44
|
+
|
|
45
|
+
return mergeObservables(...consoleObservables)
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export function resetConsoleObservable() {
|
|
49
|
+
consoleObservablesByApi = {}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
function createConsoleObservable(api: ConsoleApiName) {
|
|
53
|
+
return new Observable<ConsoleLog>((observable) => {
|
|
54
|
+
const originalConsoleApi = globalConsole[api]
|
|
55
|
+
|
|
56
|
+
globalConsole[api] = (...params: unknown[]) => {
|
|
57
|
+
originalConsoleApi.apply(console, params)
|
|
58
|
+
const handlingStack = createHandlingStack('console error')
|
|
59
|
+
|
|
60
|
+
callMonitored(() => {
|
|
61
|
+
observable.notify(buildConsoleLog(params, api, handlingStack))
|
|
62
|
+
})
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
return () => {
|
|
66
|
+
globalConsole[api] = originalConsoleApi
|
|
67
|
+
}
|
|
68
|
+
})
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
function buildConsoleLog(params: unknown[], api: ConsoleApiName, handlingStack: string): ConsoleLog {
|
|
72
|
+
const message = params.map((param) => formatConsoleParameters(param)).join(' ')
|
|
73
|
+
|
|
74
|
+
if (api === ConsoleApiName.error) {
|
|
75
|
+
const firstErrorParam = params.find(isError)
|
|
76
|
+
|
|
77
|
+
const rawError = computeRawError({
|
|
78
|
+
originalError: firstErrorParam,
|
|
79
|
+
handlingStack,
|
|
80
|
+
startClocks: clocksNow(),
|
|
81
|
+
source: ErrorSource.CONSOLE,
|
|
82
|
+
handling: ErrorHandling.HANDLED,
|
|
83
|
+
nonErrorPrefix: NonErrorPrefix.PROVIDED,
|
|
84
|
+
|
|
85
|
+
// if no good stack is computed from the error, let's not use the fallback stack message
|
|
86
|
+
// advising the user to use an instance of Error, as console.error is commonly used without an
|
|
87
|
+
// Error instance.
|
|
88
|
+
useFallbackStack: false,
|
|
89
|
+
})
|
|
90
|
+
|
|
91
|
+
// Use the full log message as the error message instead of just the error instance message.
|
|
92
|
+
rawError.message = message
|
|
93
|
+
|
|
94
|
+
return {
|
|
95
|
+
api,
|
|
96
|
+
message,
|
|
97
|
+
handlingStack,
|
|
98
|
+
error: rawError,
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
return {
|
|
103
|
+
api,
|
|
104
|
+
message,
|
|
105
|
+
error: undefined,
|
|
106
|
+
handlingStack,
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
function formatConsoleParameters(param: unknown) {
|
|
111
|
+
if (typeof param === 'string') {
|
|
112
|
+
return sanitize(param)
|
|
113
|
+
}
|
|
114
|
+
if (isError(param)) {
|
|
115
|
+
return formatErrorMessage(computeStackTrace(param))
|
|
116
|
+
}
|
|
117
|
+
return jsonStringify(sanitize(param), undefined, 2)
|
|
118
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export const enum CustomerDataType {
|
|
2
|
+
FeatureFlag,
|
|
3
|
+
User,
|
|
4
|
+
GlobalContext,
|
|
5
|
+
View,
|
|
6
|
+
Account,
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
// Use a const instead of const enum to avoid inlining the enum values in the bundle and save bytes
|
|
10
|
+
export const CustomerContextKey = {
|
|
11
|
+
userContext: 'userContext',
|
|
12
|
+
globalContext: 'globalContext',
|
|
13
|
+
accountContext: 'accountContext',
|
|
14
|
+
} as const
|
|
15
|
+
|
|
16
|
+
export type CustomerContextKey = (typeof CustomerContextKey)[keyof typeof CustomerContextKey]
|
|
17
|
+
|
|
18
|
+
// Use a const instead of const enum to avoid inlining the enum values in the bundle and save bytes
|
|
19
|
+
export const ContextManagerMethod = {
|
|
20
|
+
getContext: 'getContext',
|
|
21
|
+
setContext: 'setContext',
|
|
22
|
+
setContextProperty: 'setContextProperty',
|
|
23
|
+
removeContextProperty: 'removeContextProperty',
|
|
24
|
+
clearContext: 'clearContext',
|
|
25
|
+
} as const
|
|
26
|
+
|
|
27
|
+
export type ContextManagerMethod = (typeof ContextManagerMethod)[keyof typeof ContextManagerMethod]
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { deepClone } from '../../tools/mergeInto'
|
|
2
|
+
import { sanitize } from '../../tools/serialisation/sanitize'
|
|
3
|
+
import type { Context } from '../../tools/serialisation/context'
|
|
4
|
+
import { Observable } from '../../tools/observable'
|
|
5
|
+
import { display } from '../../tools/display'
|
|
6
|
+
import { checkContext } from './contextUtils'
|
|
7
|
+
|
|
8
|
+
export type ContextManager = ReturnType<typeof createContextManager>
|
|
9
|
+
|
|
10
|
+
export interface PropertiesConfig {
|
|
11
|
+
[key: string]: {
|
|
12
|
+
required?: boolean
|
|
13
|
+
type?: 'string'
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
function ensureProperties(context: Context, propertiesConfig: PropertiesConfig, name: string) {
|
|
18
|
+
const newContext = { ...context }
|
|
19
|
+
|
|
20
|
+
for (const [key, { required, type }] of Object.entries(propertiesConfig)) {
|
|
21
|
+
/**
|
|
22
|
+
* Ensure specified properties are strings as defined here:
|
|
23
|
+
* https://docs.datadoghq.com/logs/log_configuration/attributes_naming_convention/#user-related-attributes
|
|
24
|
+
*/
|
|
25
|
+
|
|
26
|
+
if (type === 'string' && !isDefined(newContext[key])) {
|
|
27
|
+
/* eslint-disable @typescript-eslint/no-base-to-string */
|
|
28
|
+
newContext[key] = String(newContext[key])
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
if (required && isDefined(newContext[key])) {
|
|
32
|
+
display.warn(`The property ${key} of ${name} is required; context will not be sent to the intake.`)
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
return newContext
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
function isDefined(value: unknown) {
|
|
40
|
+
return value === undefined || value === null || value === ''
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export function createContextManager(
|
|
44
|
+
name: string = '',
|
|
45
|
+
{
|
|
46
|
+
propertiesConfig = {},
|
|
47
|
+
}: {
|
|
48
|
+
propertiesConfig?: PropertiesConfig
|
|
49
|
+
} = {}
|
|
50
|
+
) {
|
|
51
|
+
let context: Context = {}
|
|
52
|
+
const changeObservable = new Observable<void>()
|
|
53
|
+
|
|
54
|
+
const contextManager = {
|
|
55
|
+
getContext: () => deepClone(context),
|
|
56
|
+
|
|
57
|
+
setContext: (newContext: unknown) => {
|
|
58
|
+
if (checkContext(newContext)) {
|
|
59
|
+
context = sanitize(ensureProperties(newContext, propertiesConfig, name))
|
|
60
|
+
} else {
|
|
61
|
+
contextManager.clearContext()
|
|
62
|
+
}
|
|
63
|
+
changeObservable.notify()
|
|
64
|
+
},
|
|
65
|
+
|
|
66
|
+
setContextProperty: (key: string, property: any) => {
|
|
67
|
+
context = sanitize(ensureProperties({ ...context, [key]: property }, propertiesConfig, name))
|
|
68
|
+
changeObservable.notify()
|
|
69
|
+
},
|
|
70
|
+
|
|
71
|
+
removeContextProperty: (key: string) => {
|
|
72
|
+
delete context[key]
|
|
73
|
+
ensureProperties(context, propertiesConfig, name)
|
|
74
|
+
changeObservable.notify()
|
|
75
|
+
},
|
|
76
|
+
|
|
77
|
+
clearContext: () => {
|
|
78
|
+
context = {}
|
|
79
|
+
changeObservable.notify()
|
|
80
|
+
},
|
|
81
|
+
|
|
82
|
+
changeObservable,
|
|
83
|
+
}
|
|
84
|
+
return contextManager
|
|
85
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { Context } from '../../tools/serialisation/context'
|
|
2
|
+
import { display } from '../../tools/display'
|
|
3
|
+
import { getType } from '../../tools/utils/typeUtils'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Simple check to ensure an object is a valid context
|
|
7
|
+
*/
|
|
8
|
+
export function checkContext(maybeContext: unknown): maybeContext is Context {
|
|
9
|
+
const isValid = getType(maybeContext) === 'object'
|
|
10
|
+
if (!isValid) {
|
|
11
|
+
display.error('Unsupported context:', maybeContext)
|
|
12
|
+
}
|
|
13
|
+
return isValid
|
|
14
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { RawTelemetryUsage, RawTelemetryUsageFeature } from '../telemetry'
|
|
2
|
+
import { addTelemetryUsage } from '../telemetry'
|
|
3
|
+
import { monitor } from '../../tools/monitor'
|
|
4
|
+
import type { BoundedBuffer } from '../../tools/boundedBuffer'
|
|
5
|
+
import type { ContextManager } from './contextManager'
|
|
6
|
+
import type { ContextManagerMethod, CustomerContextKey } from './contextConstants'
|
|
7
|
+
|
|
8
|
+
export function defineContextMethod<MethodName extends ContextManagerMethod, Key extends CustomerContextKey>(
|
|
9
|
+
getStrategy: () => Record<Key, ContextManager>,
|
|
10
|
+
contextName: Key,
|
|
11
|
+
methodName: MethodName,
|
|
12
|
+
usage?: RawTelemetryUsageFeature
|
|
13
|
+
): ContextManager[MethodName] {
|
|
14
|
+
return monitor((...args: any[]) => {
|
|
15
|
+
if (usage) {
|
|
16
|
+
addTelemetryUsage({ feature: usage } as RawTelemetryUsage)
|
|
17
|
+
}
|
|
18
|
+
return (getStrategy()[contextName][methodName] as (...args: unknown[]) => unknown)(...args)
|
|
19
|
+
}) as ContextManager[MethodName]
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export function bufferContextCalls<Key extends string, StartResult extends Record<Key, ContextManager>>(
|
|
23
|
+
preStartContextManager: ContextManager,
|
|
24
|
+
name: Key,
|
|
25
|
+
bufferApiCalls: BoundedBuffer<StartResult>
|
|
26
|
+
) {
|
|
27
|
+
preStartContextManager.changeObservable.subscribe(() => {
|
|
28
|
+
const context = preStartContextManager.getContext()
|
|
29
|
+
bufferApiCalls.add((startResult) => startResult[name].setContext(context))
|
|
30
|
+
})
|
|
31
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { addEventListener, DOM_EVENT } from '../../browser/addEventListener'
|
|
2
|
+
import type { Context } from '../../tools/serialisation/context'
|
|
3
|
+
import type { Configuration } from '../configuration'
|
|
4
|
+
import { combine } from '../../tools/mergeInto'
|
|
5
|
+
import { isEmptyObject } from '../../tools/utils/objectUtils'
|
|
6
|
+
import type { ContextManager } from './contextManager'
|
|
7
|
+
import type { CustomerDataType } from './contextConstants'
|
|
8
|
+
|
|
9
|
+
const CONTEXT_STORE_KEY_PREFIX = '_dd_c'
|
|
10
|
+
|
|
11
|
+
const storageListeners: Array<{ stop: () => void }> = []
|
|
12
|
+
|
|
13
|
+
export function storeContextManager(
|
|
14
|
+
configuration: Configuration,
|
|
15
|
+
contextManager: ContextManager,
|
|
16
|
+
productKey: string,
|
|
17
|
+
customerDataType: CustomerDataType
|
|
18
|
+
) {
|
|
19
|
+
const storageKey = buildStorageKey(productKey, customerDataType)
|
|
20
|
+
|
|
21
|
+
storageListeners.push(
|
|
22
|
+
addEventListener(configuration, window, DOM_EVENT.STORAGE, ({ key }) => {
|
|
23
|
+
if (storageKey === key) {
|
|
24
|
+
synchronizeWithStorage()
|
|
25
|
+
}
|
|
26
|
+
})
|
|
27
|
+
)
|
|
28
|
+
contextManager.changeObservable.subscribe(dumpToStorage)
|
|
29
|
+
|
|
30
|
+
const contextFromStorage = combine(getFromStorage(), contextManager.getContext())
|
|
31
|
+
if (!isEmptyObject(contextFromStorage)) {
|
|
32
|
+
contextManager.setContext(contextFromStorage)
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
function synchronizeWithStorage() {
|
|
36
|
+
contextManager.setContext(getFromStorage())
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
function dumpToStorage() {
|
|
40
|
+
localStorage.setItem(storageKey, JSON.stringify(contextManager.getContext()))
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
function getFromStorage() {
|
|
44
|
+
const rawContext = localStorage.getItem(storageKey)
|
|
45
|
+
return rawContext ? (JSON.parse(rawContext) as Context) : {}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export function buildStorageKey(productKey: string, customerDataType: CustomerDataType) {
|
|
50
|
+
return `${CONTEXT_STORE_KEY_PREFIX}_${productKey}_${customerDataType}`
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export function removeStorageListeners() {
|
|
54
|
+
storageListeners.map((listener) => listener.stop())
|
|
55
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { Configuration } from '../configuration'
|
|
2
|
+
import { CustomerDataType } from '../context/contextConstants'
|
|
3
|
+
import { storeContextManager } from '../context/storeContextManager'
|
|
4
|
+
import { HookNames, SKIPPED } from '../../tools/abstractHooks'
|
|
5
|
+
import type { AbstractHooks } from '../../tools/abstractHooks'
|
|
6
|
+
import { isEmptyObject } from '../../tools/utils/objectUtils'
|
|
7
|
+
import { createContextManager } from '../context/contextManager'
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Account information for the browser SDK.
|
|
11
|
+
*/
|
|
12
|
+
export interface Account {
|
|
13
|
+
id: string
|
|
14
|
+
name?: string | undefined
|
|
15
|
+
[key: string]: unknown
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export function startAccountContext(hooks: AbstractHooks, configuration: Configuration, productKey: string) {
|
|
19
|
+
const accountContextManager = buildAccountContextManager()
|
|
20
|
+
|
|
21
|
+
if (configuration.storeContextsAcrossPages) {
|
|
22
|
+
storeContextManager(configuration, accountContextManager, productKey, CustomerDataType.Account)
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
hooks.register(HookNames.Assemble, () => {
|
|
26
|
+
const account = accountContextManager.getContext() as Account
|
|
27
|
+
|
|
28
|
+
if (isEmptyObject(account) || !account.id) {
|
|
29
|
+
return SKIPPED
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
return {
|
|
33
|
+
account,
|
|
34
|
+
}
|
|
35
|
+
})
|
|
36
|
+
|
|
37
|
+
return accountContextManager
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export function buildAccountContextManager() {
|
|
41
|
+
return createContextManager('account', {
|
|
42
|
+
propertiesConfig: {
|
|
43
|
+
id: { type: 'string', required: true },
|
|
44
|
+
name: { type: 'string' },
|
|
45
|
+
},
|
|
46
|
+
})
|
|
47
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { AbstractHooks } from '../../tools/abstractHooks'
|
|
2
|
+
import { CustomerDataType } from '../context/contextConstants'
|
|
3
|
+
import { storeContextManager } from '../context/storeContextManager'
|
|
4
|
+
import { HookNames } from '../../tools/abstractHooks'
|
|
5
|
+
import { createContextManager } from '../context/contextManager'
|
|
6
|
+
import type { Configuration } from '../configuration'
|
|
7
|
+
|
|
8
|
+
export function startGlobalContext(
|
|
9
|
+
hooks: AbstractHooks,
|
|
10
|
+
configuration: Configuration,
|
|
11
|
+
productKey: string,
|
|
12
|
+
useContextNamespace: boolean
|
|
13
|
+
) {
|
|
14
|
+
const globalContextManager = buildGlobalContextManager()
|
|
15
|
+
|
|
16
|
+
if (configuration.storeContextsAcrossPages) {
|
|
17
|
+
storeContextManager(configuration, globalContextManager, productKey, CustomerDataType.GlobalContext)
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
hooks.register(HookNames.Assemble, () => {
|
|
21
|
+
const context = globalContextManager.getContext()
|
|
22
|
+
return useContextNamespace ? { context } : context
|
|
23
|
+
})
|
|
24
|
+
|
|
25
|
+
return globalContextManager
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export function buildGlobalContextManager() {
|
|
29
|
+
return createContextManager('global context')
|
|
30
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { Context } from '../../tools/serialisation/context'
|
|
2
|
+
|
|
3
|
+
export interface RumInternalContext extends Context {
|
|
4
|
+
application_id: string
|
|
5
|
+
session_id: string | undefined
|
|
6
|
+
view?: {
|
|
7
|
+
id: string
|
|
8
|
+
url: string
|
|
9
|
+
referrer: string
|
|
10
|
+
name?: string
|
|
11
|
+
}
|
|
12
|
+
user_action?: {
|
|
13
|
+
id: string | string[]
|
|
14
|
+
}
|
|
15
|
+
}
|