@openobserve/browser-core 0.2.11 → 0.2.12-beta.4
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/package.json +6 -5
- package/src/boot/displayAlreadyInitializedError.ts +8 -0
- package/src/boot/init.ts +29 -15
- package/src/browser/addEventListener.ts +44 -35
- package/src/browser/{types.ts → browser.types.ts} +42 -0
- package/src/browser/cookie.ts +69 -15
- package/src/browser/fetchObservable.ts +97 -42
- package/src/browser/{pageExitObservable.ts → pageMayExitObservable.ts} +11 -24
- package/src/browser/runOnReadyState.ts +14 -4
- package/src/browser/xhrObservable.ts +45 -38
- package/src/domain/allowedTrackingOrigins.ts +30 -0
- package/src/domain/bufferedData.ts +32 -0
- package/src/domain/configuration/configuration.ts +366 -95
- package/src/domain/configuration/endpointBuilder.ts +48 -64
- package/src/domain/configuration/index.ts +6 -4
- package/src/domain/configuration/transportConfiguration.ts +42 -35
- package/src/domain/connectivity/connectivity.ts +31 -0
- package/src/domain/connectivity/index.ts +1 -0
- package/src/domain/console/consoleObservable.ts +59 -27
- 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/{types.ts → deflate.types.ts} +18 -2
- package/src/domain/deflate/index.ts +1 -1
- package/src/domain/error/error.ts +28 -84
- package/src/domain/error/error.types.ts +21 -4
- package/src/domain/error/trackRuntimeError.ts +37 -8
- package/src/domain/eventRateLimiter/createEventRateLimiter.ts +5 -2
- package/src/domain/extension/extensionUtils.ts +28 -0
- package/src/domain/intakeSites.ts +18 -0
- package/src/domain/report/browser.types.ts +12 -0
- package/src/domain/report/reportObservable.ts +37 -30
- package/src/domain/resourceUtils.ts +20 -16
- package/src/domain/session/README.md +193 -0
- package/src/domain/session/oldCookiesMigration.ts +7 -7
- package/src/domain/session/sessionConstants.ts +16 -1
- package/src/domain/session/sessionManager.ts +179 -15
- package/src/domain/session/sessionState.ts +49 -17
- package/src/domain/session/sessionStateValidation.ts +9 -0
- package/src/domain/session/sessionStore.ts +118 -55
- package/src/domain/session/sessionStoreOperations.ts +51 -32
- package/src/domain/session/storeStrategies/sessionInCookie.ts +113 -23
- package/src/domain/session/storeStrategies/sessionInLocalStorage.ts +11 -8
- package/src/domain/session/storeStrategies/sessionStoreStrategy.ts +6 -2
- package/src/domain/synthetics/syntheticsWorkerValues.ts +15 -4
- package/src/domain/tags.ts +76 -0
- package/src/domain/telemetry/index.ts +12 -4
- package/src/domain/telemetry/rawTelemetryEvent.types.ts +11 -3
- package/src/domain/telemetry/telemetry.ts +242 -98
- package/src/domain/telemetry/telemetryEvent.types.ts +530 -5
- package/src/domain/trackingConsent.ts +34 -0
- package/src/index.ts +92 -55
- package/src/tools/abstractHooks.ts +72 -0
- package/src/tools/abstractLifeCycle.ts +1 -0
- package/src/tools/boundedBuffer.ts +36 -8
- package/src/tools/display.ts +18 -13
- package/src/tools/encoder.ts +103 -0
- package/src/tools/experimentalFeatures.ts +18 -9
- package/src/tools/getZoneJsOriginalValue.ts +1 -1
- package/src/tools/{getGlobalObject.ts → globalObject.ts} +20 -0
- package/src/tools/instrumentMethod.ts +127 -66
- package/src/tools/matchOption.ts +1 -2
- package/src/tools/mergeInto.ts +16 -16
- package/src/tools/monitor.ts +14 -10
- package/src/tools/observable.ts +79 -15
- package/src/tools/queueMicrotask.ts +13 -0
- package/src/tools/readBytesFromStream.ts +24 -64
- package/src/tools/requestIdleCallback.ts +40 -0
- package/src/tools/sendToExtension.ts +3 -1
- package/src/tools/serialisation/context.ts +4 -1
- package/src/tools/serialisation/sanitize.ts +32 -14
- 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 +1 -1
- package/src/tools/utils/arrayUtils.ts +11 -3
- package/src/tools/utils/browserDetection.ts +35 -3
- package/src/tools/utils/byteUtils.ts +13 -2
- package/src/tools/utils/functionUtils.ts +0 -2
- package/src/tools/utils/numberUtils.ts +2 -1
- package/src/tools/utils/objectUtils.ts +1 -3
- package/src/tools/utils/polyfills.ts +6 -110
- package/src/tools/utils/responseUtils.ts +1 -1
- package/src/tools/utils/stringUtils.ts +62 -4
- package/src/tools/utils/timeUtils.ts +18 -13
- package/src/tools/utils/timezone.ts +9 -0
- package/src/tools/utils/urlPolyfill.ts +29 -59
- package/src/tools/valueHistory.ts +66 -35
- package/src/transport/batch.ts +113 -61
- package/src/transport/eventBridge.ts +24 -5
- package/src/transport/flushController.ts +44 -23
- package/src/transport/httpRequest.ts +99 -71
- package/src/transport/index.ts +7 -4
- package/src/transport/sendWithRetryStrategy.ts +60 -41
- package/cjs/boot/init.d.ts +0 -5
- package/cjs/boot/init.js +0 -36
- package/cjs/boot/init.js.map +0 -1
- package/cjs/browser/addEventListener.d.ts +0 -76
- package/cjs/browser/addEventListener.js +0 -52
- package/cjs/browser/addEventListener.js.map +0 -1
- package/cjs/browser/cookie.d.ts +0 -10
- package/cjs/browser/cookie.js +0 -69
- package/cjs/browser/cookie.js.map +0 -1
- package/cjs/browser/fetchObservable.d.ts +0 -23
- package/cjs/browser/fetchObservable.js +0 -74
- package/cjs/browser/fetchObservable.js.map +0 -1
- package/cjs/browser/pageExitObservable.d.ts +0 -14
- package/cjs/browser/pageExitObservable.js +0 -58
- package/cjs/browser/pageExitObservable.js.map +0 -1
- package/cjs/browser/runOnReadyState.d.ts +0 -2
- package/cjs/browser/runOnReadyState.js +0 -15
- package/cjs/browser/runOnReadyState.js.map +0 -1
- package/cjs/browser/types.d.ts +0 -19
- package/cjs/browser/types.js +0 -6
- package/cjs/browser/types.js.map +0 -1
- package/cjs/browser/xhrObservable.d.ts +0 -22
- package/cjs/browser/xhrObservable.js +0 -93
- package/cjs/browser/xhrObservable.js.map +0 -1
- package/cjs/domain/configuration/configuration.d.ts +0 -67
- package/cjs/domain/configuration/configuration.js +0 -95
- package/cjs/domain/configuration/configuration.js.map +0 -1
- package/cjs/domain/configuration/endpointBuilder.d.ts +0 -14
- package/cjs/domain/configuration/endpointBuilder.js +0 -94
- package/cjs/domain/configuration/endpointBuilder.js.map +0 -1
- package/cjs/domain/configuration/index.d.ts +0 -3
- package/cjs/domain/configuration/index.js +0 -25
- package/cjs/domain/configuration/index.js.map +0 -1
- package/cjs/domain/configuration/intakeSites.d.ts +0 -5
- package/cjs/domain/configuration/intakeSites.js +0 -9
- package/cjs/domain/configuration/intakeSites.js.map +0 -1
- package/cjs/domain/configuration/tags.d.ts +0 -4
- package/cjs/domain/configuration/tags.js +0 -39
- package/cjs/domain/configuration/tags.js.map +0 -1
- package/cjs/domain/configuration/transportConfiguration.d.ts +0 -16
- package/cjs/domain/configuration/transportConfiguration.js +0 -42
- package/cjs/domain/configuration/transportConfiguration.js.map +0 -1
- package/cjs/domain/console/consoleObservable.d.ts +0 -11
- package/cjs/domain/console/consoleObservable.js +0 -75
- package/cjs/domain/console/consoleObservable.js.map +0 -1
- package/cjs/domain/deflate/index.d.ts +0 -1
- package/cjs/domain/deflate/index.js +0 -18
- package/cjs/domain/deflate/index.js.map +0 -1
- package/cjs/domain/deflate/types.d.ts +0 -26
- package/cjs/domain/deflate/types.js +0 -3
- package/cjs/domain/deflate/types.js.map +0 -1
- package/cjs/domain/error/error.d.ts +0 -28
- package/cjs/domain/error/error.js +0 -131
- package/cjs/domain/error/error.js.map +0 -1
- package/cjs/domain/error/error.types.d.ts +0 -40
- package/cjs/domain/error/error.types.js +0 -13
- package/cjs/domain/error/error.types.js.map +0 -1
- package/cjs/domain/error/trackRuntimeError.d.ts +0 -5
- package/cjs/domain/error/trackRuntimeError.js +0 -21
- package/cjs/domain/error/trackRuntimeError.js.map +0 -1
- package/cjs/domain/eventRateLimiter/createEventRateLimiter.d.ts +0 -5
- package/cjs/domain/eventRateLimiter/createEventRateLimiter.js +0 -40
- package/cjs/domain/eventRateLimiter/createEventRateLimiter.js.map +0 -1
- package/cjs/domain/report/browser.types.d.ts +0 -24
- package/cjs/domain/report/browser.types.js +0 -3
- package/cjs/domain/report/browser.types.js.map +0 -1
- package/cjs/domain/report/reportObservable.d.ts +0 -15
- package/cjs/domain/report/reportObservable.js +0 -94
- package/cjs/domain/report/reportObservable.js.map +0 -1
- package/cjs/domain/resourceUtils.d.ts +0 -16
- package/cjs/domain/resourceUtils.js +0 -3
- package/cjs/domain/resourceUtils.js.map +0 -1
- package/cjs/domain/session/oldCookiesMigration.d.ts +0 -11
- package/cjs/domain/session/oldCookiesMigration.js +0 -40
- package/cjs/domain/session/oldCookiesMigration.js.map +0 -1
- package/cjs/domain/session/sessionConstants.d.ts +0 -2
- package/cjs/domain/session/sessionConstants.js +0 -7
- package/cjs/domain/session/sessionConstants.js.map +0 -1
- package/cjs/domain/session/sessionManager.d.ts +0 -20
- package/cjs/domain/session/sessionManager.js +0 -65
- package/cjs/domain/session/sessionManager.js.map +0 -1
- package/cjs/domain/session/sessionState.d.ts +0 -11
- package/cjs/domain/session/sessionState.js +0 -45
- package/cjs/domain/session/sessionState.js.map +0 -1
- package/cjs/domain/session/sessionStore.d.ts +0 -34
- package/cjs/domain/session/sessionStore.js +0 -144
- package/cjs/domain/session/sessionStore.js.map +0 -1
- package/cjs/domain/session/sessionStoreOperations.d.ts +0 -15
- package/cjs/domain/session/sessionStoreOperations.js +0 -104
- package/cjs/domain/session/sessionStoreOperations.js.map +0 -1
- package/cjs/domain/session/storeStrategies/sessionInCookie.d.ts +0 -6
- package/cjs/domain/session/storeStrategies/sessionInCookie.js +0 -48
- package/cjs/domain/session/storeStrategies/sessionInCookie.js.map +0 -1
- package/cjs/domain/session/storeStrategies/sessionInLocalStorage.d.ts +0 -3
- package/cjs/domain/session/storeStrategies/sessionInLocalStorage.js +0 -40
- package/cjs/domain/session/storeStrategies/sessionInLocalStorage.js.map +0 -1
- package/cjs/domain/session/storeStrategies/sessionStoreStrategy.d.ts +0 -14
- package/cjs/domain/session/storeStrategies/sessionStoreStrategy.js +0 -5
- package/cjs/domain/session/storeStrategies/sessionStoreStrategy.js.map +0 -1
- package/cjs/domain/synthetics/syntheticsWorkerValues.d.ts +0 -11
- package/cjs/domain/synthetics/syntheticsWorkerValues.js +0 -22
- package/cjs/domain/synthetics/syntheticsWorkerValues.js.map +0 -1
- package/cjs/domain/telemetry/index.d.ts +0 -3
- package/cjs/domain/telemetry/index.js +0 -28
- package/cjs/domain/telemetry/index.js.map +0 -1
- package/cjs/domain/telemetry/rawTelemetryEvent.types.d.ts +0 -11
- package/cjs/domain/telemetry/rawTelemetryEvent.types.js +0 -8
- package/cjs/domain/telemetry/rawTelemetryEvent.types.js.map +0 -1
- package/cjs/domain/telemetry/telemetry.d.ts +0 -112
- package/cjs/domain/telemetry/telemetry.js +0 -146
- package/cjs/domain/telemetry/telemetry.js.map +0 -1
- package/cjs/domain/telemetry/telemetryEvent.types.d.ts +0 -375
- package/cjs/domain/telemetry/telemetryEvent.types.js +0 -7
- package/cjs/domain/telemetry/telemetryEvent.types.js.map +0 -1
- package/cjs/domain/tracekit/computeStackTrace.d.ts +0 -5
- package/cjs/domain/tracekit/computeStackTrace.js +0 -118
- package/cjs/domain/tracekit/computeStackTrace.js.map +0 -1
- package/cjs/domain/tracekit/index.d.ts +0 -3
- package/cjs/domain/tracekit/index.js +0 -8
- package/cjs/domain/tracekit/index.js.map +0 -1
- package/cjs/domain/tracekit/tracekit.d.ts +0 -35
- package/cjs/domain/tracekit/tracekit.js +0 -95
- package/cjs/domain/tracekit/tracekit.js.map +0 -1
- package/cjs/domain/tracekit/types.d.ts +0 -44
- package/cjs/domain/tracekit/types.js +0 -3
- package/cjs/domain/tracekit/types.js.map +0 -1
- package/cjs/domain/user/index.d.ts +0 -2
- package/cjs/domain/user/index.js +0 -19
- package/cjs/domain/user/index.js.map +0 -1
- package/cjs/domain/user/user.d.ts +0 -12
- package/cjs/domain/user/user.js +0 -35
- package/cjs/domain/user/user.js.map +0 -1
- package/cjs/domain/user/user.types.d.ts +0 -6
- package/cjs/domain/user/user.types.js +0 -3
- package/cjs/domain/user/user.types.js.map +0 -1
- package/cjs/index.d.ts +0 -63
- package/cjs/index.js +0 -155
- package/cjs/index.js.map +0 -1
- package/cjs/tools/abstractLifeCycle.d.ts +0 -23
- package/cjs/tools/abstractLifeCycle.js +0 -29
- package/cjs/tools/abstractLifeCycle.js.map +0 -1
- package/cjs/tools/boundedBuffer.d.ts +0 -5
- package/cjs/tools/boundedBuffer.js +0 -22
- package/cjs/tools/boundedBuffer.js.map +0 -1
- package/cjs/tools/catchUserErrors.d.ts +0 -1
- package/cjs/tools/catchUserErrors.js +0 -20
- package/cjs/tools/catchUserErrors.js.map +0 -1
- package/cjs/tools/display.d.ts +0 -35
- package/cjs/tools/display.js +0 -45
- package/cjs/tools/display.js.map +0 -1
- package/cjs/tools/experimentalFeatures.d.ts +0 -24
- package/cjs/tools/experimentalFeatures.js +0 -47
- package/cjs/tools/experimentalFeatures.js.map +0 -1
- package/cjs/tools/getGlobalObject.d.ts +0 -4
- package/cjs/tools/getGlobalObject.js +0 -37
- package/cjs/tools/getGlobalObject.js.map +0 -1
- package/cjs/tools/getZoneJsOriginalValue.d.ts +0 -19
- package/cjs/tools/getZoneJsOriginalValue.js +0 -30
- package/cjs/tools/getZoneJsOriginalValue.js.map +0 -1
- package/cjs/tools/instrumentMethod.d.ts +0 -19
- package/cjs/tools/instrumentMethod.js +0 -83
- package/cjs/tools/instrumentMethod.js.map +0 -1
- package/cjs/tools/matchOption.d.ts +0 -8
- package/cjs/tools/matchOption.js +0 -38
- package/cjs/tools/matchOption.js.map +0 -1
- package/cjs/tools/mergeInto.d.ts +0 -25
- package/cjs/tools/mergeInto.js +0 -105
- package/cjs/tools/mergeInto.js.map +0 -1
- package/cjs/tools/monitor.d.ts +0 -9
- package/cjs/tools/monitor.js +0 -76
- package/cjs/tools/monitor.js.map +0 -1
- package/cjs/tools/observable.d.ts +0 -12
- package/cjs/tools/observable.js +0 -44
- package/cjs/tools/observable.js.map +0 -1
- package/cjs/tools/readBytesFromStream.d.ts +0 -11
- package/cjs/tools/readBytesFromStream.js +0 -64
- package/cjs/tools/readBytesFromStream.js.map +0 -1
- package/cjs/tools/sendToExtension.d.ts +0 -3
- package/cjs/tools/sendToExtension.js +0 -11
- package/cjs/tools/sendToExtension.js.map +0 -1
- package/cjs/tools/serialisation/context.d.ts +0 -6
- package/cjs/tools/serialisation/context.js +0 -3
- package/cjs/tools/serialisation/context.js.map +0 -1
- package/cjs/tools/serialisation/contextManager.d.ts +0 -21
- package/cjs/tools/serialisation/contextManager.js +0 -70
- package/cjs/tools/serialisation/contextManager.js.map +0 -1
- package/cjs/tools/serialisation/heavyCustomerDataWarning.d.ts +0 -8
- package/cjs/tools/serialisation/heavyCustomerDataWarning.js +0 -18
- package/cjs/tools/serialisation/heavyCustomerDataWarning.js.map +0 -1
- package/cjs/tools/serialisation/jsonStringify.d.ts +0 -14
- package/cjs/tools/serialisation/jsonStringify.js +0 -49
- package/cjs/tools/serialisation/jsonStringify.js.map +0 -1
- package/cjs/tools/serialisation/sanitize.d.ts +0 -18
- package/cjs/tools/serialisation/sanitize.js +0 -185
- package/cjs/tools/serialisation/sanitize.js.map +0 -1
- package/cjs/tools/timer.d.ts +0 -5
- package/cjs/tools/timer.js +0 -23
- package/cjs/tools/timer.js.map +0 -1
- package/cjs/tools/utils/arrayUtils.d.ts +0 -1
- package/cjs/tools/utils/arrayUtils.js +0 -11
- package/cjs/tools/utils/arrayUtils.js.map +0 -1
- package/cjs/tools/utils/browserDetection.d.ts +0 -2
- package/cjs/tools/utils/browserDetection.js +0 -12
- package/cjs/tools/utils/browserDetection.js.map +0 -1
- package/cjs/tools/utils/byteUtils.d.ts +0 -4
- package/cjs/tools/utils/byteUtils.js +0 -31
- package/cjs/tools/utils/byteUtils.js.map +0 -1
- package/cjs/tools/utils/functionUtils.d.ts +0 -9
- package/cjs/tools/utils/functionUtils.js +0 -48
- package/cjs/tools/utils/functionUtils.js.map +0 -1
- package/cjs/tools/utils/numberUtils.d.ts +0 -8
- package/cjs/tools/utils/numberUtils.js +0 -24
- package/cjs/tools/utils/numberUtils.js.map +0 -1
- package/cjs/tools/utils/objectUtils.d.ts +0 -10
- package/cjs/tools/utils/objectUtils.js +0 -26
- package/cjs/tools/utils/objectUtils.js.map +0 -1
- package/cjs/tools/utils/polyfills.d.ts +0 -24
- package/cjs/tools/utils/polyfills.js +0 -110
- package/cjs/tools/utils/polyfills.js.map +0 -1
- package/cjs/tools/utils/responseUtils.d.ts +0 -2
- package/cjs/tools/utils/responseUtils.js +0 -18
- package/cjs/tools/utils/responseUtils.js.map +0 -1
- package/cjs/tools/utils/stringUtils.d.ts +0 -7
- package/cjs/tools/utils/stringUtils.js +0 -32
- package/cjs/tools/utils/stringUtils.js.map +0 -1
- package/cjs/tools/utils/timeUtils.d.ts +0 -57
- package/cjs/tools/utils/timeUtils.js +0 -99
- package/cjs/tools/utils/timeUtils.js.map +0 -1
- package/cjs/tools/utils/typeUtils.d.ts +0 -4
- package/cjs/tools/utils/typeUtils.js +0 -17
- package/cjs/tools/utils/typeUtils.js.map +0 -1
- package/cjs/tools/utils/urlPolyfill.d.ts +0 -14
- package/cjs/tools/utils/urlPolyfill.js +0 -92
- package/cjs/tools/utils/urlPolyfill.js.map +0 -1
- package/cjs/tools/valueHistory.d.ts +0 -50
- package/cjs/tools/valueHistory.js +0 -106
- package/cjs/tools/valueHistory.js.map +0 -1
- package/cjs/transport/batch.d.ts +0 -19
- package/cjs/transport/batch.js +0 -79
- package/cjs/transport/batch.js.map +0 -1
- package/cjs/transport/eventBridge.d.ts +0 -12
- package/cjs/transport/eventBridge.js +0 -34
- package/cjs/transport/eventBridge.js.map +0 -1
- package/cjs/transport/flushController.d.ts +0 -48
- package/cjs/transport/flushController.js +0 -97
- package/cjs/transport/flushController.js.map +0 -1
- package/cjs/transport/httpRequest.d.ts +0 -37
- package/cjs/transport/httpRequest.js +0 -91
- package/cjs/transport/httpRequest.js.map +0 -1
- package/cjs/transport/index.d.ts +0 -4
- package/cjs/transport/index.js +0 -13
- package/cjs/transport/index.js.map +0 -1
- package/cjs/transport/sendWithRetryStrategy.d.ts +0 -39
- package/cjs/transport/sendWithRetryStrategy.js +0 -151
- package/cjs/transport/sendWithRetryStrategy.js.map +0 -1
- package/cjs/transport/startBatchWithReplica.d.ts +0 -15
- package/cjs/transport/startBatchWithReplica.js +0 -37
- package/cjs/transport/startBatchWithReplica.js.map +0 -1
- package/esm/boot/init.d.ts +0 -5
- package/esm/boot/init.js +0 -31
- package/esm/boot/init.js.map +0 -1
- package/esm/browser/addEventListener.d.ts +0 -76
- package/esm/browser/addEventListener.js +0 -47
- package/esm/browser/addEventListener.js.map +0 -1
- package/esm/browser/cookie.d.ts +0 -10
- package/esm/browser/cookie.js +0 -61
- package/esm/browser/cookie.js.map +0 -1
- package/esm/browser/fetchObservable.d.ts +0 -23
- package/esm/browser/fetchObservable.js +0 -70
- package/esm/browser/fetchObservable.js.map +0 -1
- package/esm/browser/pageExitObservable.d.ts +0 -14
- package/esm/browser/pageExitObservable.js +0 -53
- package/esm/browser/pageExitObservable.js.map +0 -1
- package/esm/browser/runOnReadyState.d.ts +0 -2
- package/esm/browser/runOnReadyState.js +0 -11
- package/esm/browser/runOnReadyState.js.map +0 -1
- package/esm/browser/types.d.ts +0 -19
- package/esm/browser/types.js +0 -5
- package/esm/browser/types.js.map +0 -1
- package/esm/browser/xhrObservable.d.ts +0 -22
- package/esm/browser/xhrObservable.js +0 -89
- package/esm/browser/xhrObservable.js.map +0 -1
- package/esm/domain/configuration/configuration.d.ts +0 -67
- package/esm/domain/configuration/configuration.js +0 -90
- package/esm/domain/configuration/configuration.js.map +0 -1
- package/esm/domain/configuration/endpointBuilder.d.ts +0 -14
- package/esm/domain/configuration/endpointBuilder.js +0 -90
- package/esm/domain/configuration/endpointBuilder.js.map +0 -1
- package/esm/domain/configuration/index.d.ts +0 -3
- package/esm/domain/configuration/index.js +0 -4
- package/esm/domain/configuration/index.js.map +0 -1
- package/esm/domain/configuration/intakeSites.d.ts +0 -5
- package/esm/domain/configuration/intakeSites.js +0 -6
- package/esm/domain/configuration/intakeSites.js.map +0 -1
- package/esm/domain/configuration/tags.d.ts +0 -4
- package/esm/domain/configuration/tags.js +0 -34
- package/esm/domain/configuration/tags.js.map +0 -1
- package/esm/domain/configuration/transportConfiguration.d.ts +0 -16
- package/esm/domain/configuration/transportConfiguration.js +0 -38
- package/esm/domain/configuration/transportConfiguration.js.map +0 -1
- package/esm/domain/console/consoleObservable.d.ts +0 -11
- package/esm/domain/console/consoleObservable.js +0 -70
- package/esm/domain/console/consoleObservable.js.map +0 -1
- package/esm/domain/deflate/index.d.ts +0 -1
- package/esm/domain/deflate/index.js +0 -2
- package/esm/domain/deflate/index.js.map +0 -1
- package/esm/domain/deflate/types.d.ts +0 -26
- package/esm/domain/deflate/types.js +0 -2
- package/esm/domain/deflate/types.js.map +0 -1
- package/esm/domain/error/error.d.ts +0 -28
- package/esm/domain/error/error.js +0 -121
- package/esm/domain/error/error.js.map +0 -1
- package/esm/domain/error/error.types.d.ts +0 -40
- package/esm/domain/error/error.types.js +0 -10
- package/esm/domain/error/error.types.js.map +0 -1
- package/esm/domain/error/trackRuntimeError.d.ts +0 -5
- package/esm/domain/error/trackRuntimeError.js +0 -17
- package/esm/domain/error/trackRuntimeError.js.map +0 -1
- package/esm/domain/eventRateLimiter/createEventRateLimiter.d.ts +0 -5
- package/esm/domain/eventRateLimiter/createEventRateLimiter.js +0 -36
- package/esm/domain/eventRateLimiter/createEventRateLimiter.js.map +0 -1
- package/esm/domain/report/browser.types.d.ts +0 -24
- package/esm/domain/report/browser.types.js +0 -2
- package/esm/domain/report/browser.types.js.map +0 -1
- package/esm/domain/report/reportObservable.d.ts +0 -15
- package/esm/domain/report/reportObservable.js +0 -90
- package/esm/domain/report/reportObservable.js.map +0 -1
- package/esm/domain/resourceUtils.d.ts +0 -16
- package/esm/domain/resourceUtils.js +0 -2
- package/esm/domain/resourceUtils.js.map +0 -1
- package/esm/domain/session/oldCookiesMigration.d.ts +0 -11
- package/esm/domain/session/oldCookiesMigration.js +0 -36
- package/esm/domain/session/oldCookiesMigration.js.map +0 -1
- package/esm/domain/session/sessionConstants.d.ts +0 -2
- package/esm/domain/session/sessionConstants.js +0 -4
- package/esm/domain/session/sessionConstants.js.map +0 -1
- package/esm/domain/session/sessionManager.d.ts +0 -20
- package/esm/domain/session/sessionManager.js +0 -60
- package/esm/domain/session/sessionManager.js.map +0 -1
- package/esm/domain/session/sessionState.d.ts +0 -11
- package/esm/domain/session/sessionState.js +0 -38
- package/esm/domain/session/sessionState.js.map +0 -1
- package/esm/domain/session/sessionStore.d.ts +0 -34
- package/esm/domain/session/sessionStore.js +0 -139
- package/esm/domain/session/sessionStore.js.map +0 -1
- package/esm/domain/session/sessionStoreOperations.d.ts +0 -15
- package/esm/domain/session/sessionStoreOperations.js +0 -99
- package/esm/domain/session/sessionStoreOperations.js.map +0 -1
- package/esm/domain/session/storeStrategies/sessionInCookie.d.ts +0 -6
- package/esm/domain/session/storeStrategies/sessionInCookie.js +0 -42
- package/esm/domain/session/storeStrategies/sessionInCookie.js.map +0 -1
- package/esm/domain/session/storeStrategies/sessionInLocalStorage.d.ts +0 -3
- package/esm/domain/session/storeStrategies/sessionInLocalStorage.js +0 -35
- package/esm/domain/session/storeStrategies/sessionInLocalStorage.js.map +0 -1
- package/esm/domain/session/storeStrategies/sessionStoreStrategy.d.ts +0 -14
- package/esm/domain/session/storeStrategies/sessionStoreStrategy.js +0 -2
- package/esm/domain/session/storeStrategies/sessionStoreStrategy.js.map +0 -1
- package/esm/domain/synthetics/syntheticsWorkerValues.d.ts +0 -11
- package/esm/domain/synthetics/syntheticsWorkerValues.js +0 -16
- package/esm/domain/synthetics/syntheticsWorkerValues.js.map +0 -1
- package/esm/domain/telemetry/index.d.ts +0 -3
- package/esm/domain/telemetry/index.js +0 -4
- package/esm/domain/telemetry/index.js.map +0 -1
- package/esm/domain/telemetry/rawTelemetryEvent.types.d.ts +0 -11
- package/esm/domain/telemetry/rawTelemetryEvent.types.js +0 -5
- package/esm/domain/telemetry/rawTelemetryEvent.types.js.map +0 -1
- package/esm/domain/telemetry/telemetry.d.ts +0 -112
- package/esm/domain/telemetry/telemetry.js +0 -134
- package/esm/domain/telemetry/telemetry.js.map +0 -1
- package/esm/domain/telemetry/telemetryEvent.types.d.ts +0 -375
- package/esm/domain/telemetry/telemetryEvent.types.js +0 -6
- package/esm/domain/telemetry/telemetryEvent.types.js.map +0 -1
- package/esm/domain/tracekit/computeStackTrace.d.ts +0 -5
- package/esm/domain/tracekit/computeStackTrace.js +0 -114
- package/esm/domain/tracekit/computeStackTrace.js.map +0 -1
- package/esm/domain/tracekit/index.d.ts +0 -3
- package/esm/domain/tracekit/index.js +0 -3
- package/esm/domain/tracekit/index.js.map +0 -1
- package/esm/domain/tracekit/tracekit.d.ts +0 -35
- package/esm/domain/tracekit/tracekit.js +0 -91
- package/esm/domain/tracekit/tracekit.js.map +0 -1
- package/esm/domain/tracekit/types.d.ts +0 -44
- package/esm/domain/tracekit/types.js +0 -2
- package/esm/domain/tracekit/types.js.map +0 -1
- package/esm/domain/user/index.d.ts +0 -2
- package/esm/domain/user/index.js +0 -3
- package/esm/domain/user/index.js.map +0 -1
- package/esm/domain/user/user.d.ts +0 -12
- package/esm/domain/user/user.js +0 -30
- package/esm/domain/user/user.js.map +0 -1
- package/esm/domain/user/user.types.d.ts +0 -6
- package/esm/domain/user/user.types.js +0 -2
- package/esm/domain/user/user.types.js.map +0 -1
- package/esm/index.d.ts +0 -63
- package/esm/index.js +0 -61
- package/esm/index.js.map +0 -1
- package/esm/tools/abstractLifeCycle.d.ts +0 -23
- package/esm/tools/abstractLifeCycle.js +0 -26
- package/esm/tools/abstractLifeCycle.js.map +0 -1
- package/esm/tools/boundedBuffer.d.ts +0 -5
- package/esm/tools/boundedBuffer.js +0 -19
- package/esm/tools/boundedBuffer.js.map +0 -1
- package/esm/tools/catchUserErrors.d.ts +0 -1
- package/esm/tools/catchUserErrors.js +0 -16
- package/esm/tools/catchUserErrors.js.map +0 -1
- package/esm/tools/display.d.ts +0 -35
- package/esm/tools/display.js +0 -41
- package/esm/tools/display.js.map +0 -1
- package/esm/tools/experimentalFeatures.d.ts +0 -24
- package/esm/tools/experimentalFeatures.js +0 -40
- package/esm/tools/experimentalFeatures.js.map +0 -1
- package/esm/tools/getGlobalObject.d.ts +0 -4
- package/esm/tools/getGlobalObject.js +0 -33
- package/esm/tools/getGlobalObject.js.map +0 -1
- package/esm/tools/getZoneJsOriginalValue.d.ts +0 -19
- package/esm/tools/getZoneJsOriginalValue.js +0 -26
- package/esm/tools/getZoneJsOriginalValue.js.map +0 -1
- package/esm/tools/instrumentMethod.d.ts +0 -19
- package/esm/tools/instrumentMethod.js +0 -77
- package/esm/tools/instrumentMethod.js.map +0 -1
- package/esm/tools/matchOption.d.ts +0 -8
- package/esm/tools/matchOption.js +0 -33
- package/esm/tools/matchOption.js.map +0 -1
- package/esm/tools/mergeInto.d.ts +0 -25
- package/esm/tools/mergeInto.js +0 -99
- package/esm/tools/mergeInto.js.map +0 -1
- package/esm/tools/monitor.d.ts +0 -9
- package/esm/tools/monitor.js +0 -66
- package/esm/tools/monitor.js.map +0 -1
- package/esm/tools/observable.d.ts +0 -12
- package/esm/tools/observable.js +0 -40
- package/esm/tools/observable.js.map +0 -1
- package/esm/tools/readBytesFromStream.d.ts +0 -11
- package/esm/tools/readBytesFromStream.js +0 -60
- package/esm/tools/readBytesFromStream.js.map +0 -1
- package/esm/tools/sendToExtension.d.ts +0 -3
- package/esm/tools/sendToExtension.js +0 -7
- package/esm/tools/sendToExtension.js.map +0 -1
- package/esm/tools/serialisation/context.d.ts +0 -6
- package/esm/tools/serialisation/context.js +0 -2
- package/esm/tools/serialisation/context.js.map +0 -1
- package/esm/tools/serialisation/contextManager.d.ts +0 -21
- package/esm/tools/serialisation/contextManager.js +0 -66
- package/esm/tools/serialisation/contextManager.js.map +0 -1
- package/esm/tools/serialisation/heavyCustomerDataWarning.d.ts +0 -8
- package/esm/tools/serialisation/heavyCustomerDataWarning.js +0 -14
- package/esm/tools/serialisation/heavyCustomerDataWarning.js.map +0 -1
- package/esm/tools/serialisation/jsonStringify.d.ts +0 -14
- package/esm/tools/serialisation/jsonStringify.js +0 -44
- package/esm/tools/serialisation/jsonStringify.js.map +0 -1
- package/esm/tools/serialisation/sanitize.d.ts +0 -18
- package/esm/tools/serialisation/sanitize.js +0 -181
- package/esm/tools/serialisation/sanitize.js.map +0 -1
- package/esm/tools/timer.d.ts +0 -5
- package/esm/tools/timer.js +0 -16
- package/esm/tools/timer.js.map +0 -1
- package/esm/tools/utils/arrayUtils.d.ts +0 -1
- package/esm/tools/utils/arrayUtils.js +0 -7
- package/esm/tools/utils/arrayUtils.js.map +0 -1
- package/esm/tools/utils/browserDetection.d.ts +0 -2
- package/esm/tools/utils/browserDetection.js +0 -7
- package/esm/tools/utils/browserDetection.js.map +0 -1
- package/esm/tools/utils/byteUtils.d.ts +0 -4
- package/esm/tools/utils/byteUtils.js +0 -26
- package/esm/tools/utils/byteUtils.js.map +0 -1
- package/esm/tools/utils/functionUtils.d.ts +0 -9
- package/esm/tools/utils/functionUtils.js +0 -43
- package/esm/tools/utils/functionUtils.js.map +0 -1
- package/esm/tools/utils/numberUtils.d.ts +0 -8
- package/esm/tools/utils/numberUtils.js +0 -17
- package/esm/tools/utils/numberUtils.js.map +0 -1
- package/esm/tools/utils/objectUtils.d.ts +0 -10
- package/esm/tools/utils/objectUtils.js +0 -19
- package/esm/tools/utils/objectUtils.js.map +0 -1
- package/esm/tools/utils/polyfills.d.ts +0 -24
- package/esm/tools/utils/polyfills.js +0 -95
- package/esm/tools/utils/polyfills.js.map +0 -1
- package/esm/tools/utils/responseUtils.d.ts +0 -2
- package/esm/tools/utils/responseUtils.js +0 -13
- package/esm/tools/utils/responseUtils.js.map +0 -1
- package/esm/tools/utils/stringUtils.d.ts +0 -7
- package/esm/tools/utils/stringUtils.js +0 -26
- package/esm/tools/utils/stringUtils.js.map +0 -1
- package/esm/tools/utils/timeUtils.d.ts +0 -57
- package/esm/tools/utils/timeUtils.js +0 -82
- package/esm/tools/utils/timeUtils.js.map +0 -1
- package/esm/tools/utils/typeUtils.d.ts +0 -4
- package/esm/tools/utils/typeUtils.js +0 -13
- package/esm/tools/utils/typeUtils.js.map +0 -1
- package/esm/tools/utils/urlPolyfill.d.ts +0 -14
- package/esm/tools/utils/urlPolyfill.js +0 -80
- package/esm/tools/utils/urlPolyfill.js.map +0 -1
- package/esm/tools/valueHistory.d.ts +0 -50
- package/esm/tools/valueHistory.js +0 -103
- package/esm/tools/valueHistory.js.map +0 -1
- package/esm/transport/batch.d.ts +0 -19
- package/esm/transport/batch.js +0 -76
- package/esm/transport/batch.js.map +0 -1
- package/esm/transport/eventBridge.d.ts +0 -12
- package/esm/transport/eventBridge.js +0 -29
- package/esm/transport/eventBridge.js.map +0 -1
- package/esm/transport/flushController.d.ts +0 -48
- package/esm/transport/flushController.js +0 -93
- package/esm/transport/flushController.js.map +0 -1
- package/esm/transport/httpRequest.d.ts +0 -37
- package/esm/transport/httpRequest.js +0 -85
- package/esm/transport/httpRequest.js.map +0 -1
- package/esm/transport/index.d.ts +0 -4
- package/esm/transport/index.js +0 -5
- package/esm/transport/index.js.map +0 -1
- package/esm/transport/sendWithRetryStrategy.d.ts +0 -39
- package/esm/transport/sendWithRetryStrategy.js +0 -146
- package/esm/transport/sendWithRetryStrategy.js.map +0 -1
- package/esm/transport/startBatchWithReplica.d.ts +0 -15
- package/esm/transport/startBatchWithReplica.js +0 -33
- package/esm/transport/startBatchWithReplica.js.map +0 -1
- package/src/domain/configuration/intakeSites.ts +0 -5
- package/src/domain/configuration/tags.ts +0 -43
- package/src/domain/tracekit/computeStackTrace.ts +0 -141
- package/src/domain/tracekit/index.ts +0 -3
- package/src/domain/tracekit/tracekit.ts +0 -96
- package/src/domain/tracekit/types.ts +0 -47
- package/src/domain/user/index.ts +0 -2
- package/src/domain/user/user.ts +0 -33
- package/src/domain/user/user.types.ts +0 -6
- package/src/tools/serialisation/contextManager.ts +0 -79
- package/src/tools/serialisation/heavyCustomerDataWarning.ts +0 -26
- package/src/transport/startBatchWithReplica.ts +0 -52
package/src/transport/batch.ts
CHANGED
|
@@ -1,92 +1,144 @@
|
|
|
1
|
-
import { display } from '../tools/display'
|
|
1
|
+
import { DOCS_TROUBLESHOOTING, MORE_DETAILS, display } from '../tools/display'
|
|
2
2
|
import type { Context } from '../tools/serialisation/context'
|
|
3
3
|
import { objectValues } from '../tools/utils/polyfills'
|
|
4
|
-
import { isPageExitReason } from '../browser/
|
|
5
|
-
import { computeBytesCount } from '../tools/utils/byteUtils'
|
|
4
|
+
import { isPageExitReason } from '../browser/pageMayExitObservable'
|
|
6
5
|
import { jsonStringify } from '../tools/serialisation/jsonStringify'
|
|
7
|
-
import type {
|
|
6
|
+
import type { Encoder, EncoderResult } from '../tools/encoder'
|
|
7
|
+
import { computeBytesCount, ONE_KIBI_BYTE } from '../tools/utils/byteUtils'
|
|
8
|
+
import type { HttpRequest, Payload } from './httpRequest'
|
|
8
9
|
import type { FlushController, FlushEvent } from './flushController'
|
|
9
10
|
|
|
10
|
-
export
|
|
11
|
-
private pushOnlyBuffer: string[] = []
|
|
12
|
-
private upsertBuffer: { [key: string]: string } = {}
|
|
11
|
+
export const MESSAGE_BYTES_LIMIT = 256 * ONE_KIBI_BYTE
|
|
13
12
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
)
|
|
19
|
-
|
|
20
|
-
}
|
|
13
|
+
export interface Batch {
|
|
14
|
+
flushController: FlushController
|
|
15
|
+
add: (message: Context) => void
|
|
16
|
+
upsert: (message: Context, key: string) => void
|
|
17
|
+
stop: () => void
|
|
18
|
+
}
|
|
21
19
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
20
|
+
export function createBatch({
|
|
21
|
+
encoder,
|
|
22
|
+
request,
|
|
23
|
+
flushController,
|
|
24
|
+
}: {
|
|
25
|
+
encoder: Encoder
|
|
26
|
+
request: HttpRequest
|
|
27
|
+
flushController: FlushController
|
|
28
|
+
}): Batch {
|
|
29
|
+
let upsertBuffer: { [key: string]: string } = {}
|
|
30
|
+
const flushSubscription = flushController.flushObservable.subscribe((event) => flush(event))
|
|
31
|
+
|
|
32
|
+
function push(serializedMessage: string, estimatedMessageBytesCount: number, key?: string) {
|
|
33
|
+
flushController.notifyBeforeAddMessage(estimatedMessageBytesCount)
|
|
25
34
|
|
|
26
|
-
|
|
27
|
-
|
|
35
|
+
if (key !== undefined) {
|
|
36
|
+
upsertBuffer[key] = serializedMessage
|
|
37
|
+
flushController.notifyAfterAddMessage()
|
|
38
|
+
} else {
|
|
39
|
+
encoder.write(encoder.isEmpty ? serializedMessage : `\n${serializedMessage}`, (realMessageBytesCount) => {
|
|
40
|
+
flushController.notifyAfterAddMessage(realMessageBytesCount - estimatedMessageBytesCount)
|
|
41
|
+
})
|
|
42
|
+
}
|
|
28
43
|
}
|
|
29
44
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
this.pushOnlyBuffer = []
|
|
34
|
-
this.upsertBuffer = {}
|
|
45
|
+
function hasMessageFor(key?: string): key is string {
|
|
46
|
+
return key !== undefined && upsertBuffer[key] !== undefined
|
|
47
|
+
}
|
|
35
48
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
}
|
|
49
|
+
function remove(key: string) {
|
|
50
|
+
const removedMessage = upsertBuffer[key]
|
|
51
|
+
delete upsertBuffer[key]
|
|
52
|
+
const messageBytesCount = encoder.estimateEncodedBytesCount(removedMessage)
|
|
53
|
+
flushController.notifyAfterRemoveMessage(messageBytesCount)
|
|
42
54
|
}
|
|
43
55
|
|
|
44
|
-
|
|
45
|
-
const
|
|
56
|
+
function addOrUpdate(message: Context, key?: string) {
|
|
57
|
+
const serializedMessage = jsonStringify(message)!
|
|
58
|
+
|
|
59
|
+
const estimatedMessageBytesCount = encoder.estimateEncodedBytesCount(serializedMessage)
|
|
46
60
|
|
|
47
|
-
if (
|
|
61
|
+
if (estimatedMessageBytesCount >= MESSAGE_BYTES_LIMIT) {
|
|
48
62
|
display.warn(
|
|
49
|
-
`Discarded a message whose size was bigger than the maximum allowed size ${
|
|
63
|
+
`Discarded a message whose size was bigger than the maximum allowed size ${MESSAGE_BYTES_LIMIT / ONE_KIBI_BYTE}KiB. ${MORE_DETAILS} ${DOCS_TROUBLESHOOTING}/#technical-limitations`
|
|
50
64
|
)
|
|
51
65
|
return
|
|
52
66
|
}
|
|
53
67
|
|
|
54
|
-
if (
|
|
55
|
-
|
|
68
|
+
if (hasMessageFor(key)) {
|
|
69
|
+
remove(key)
|
|
56
70
|
}
|
|
57
71
|
|
|
58
|
-
|
|
72
|
+
push(serializedMessage, estimatedMessageBytesCount, key)
|
|
59
73
|
}
|
|
60
74
|
|
|
61
|
-
|
|
62
|
-
const
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
75
|
+
function flush(event: FlushEvent) {
|
|
76
|
+
const upsertMessages = objectValues(upsertBuffer).join('\n')
|
|
77
|
+
upsertBuffer = {}
|
|
78
|
+
|
|
79
|
+
const pageMightExit = isPageExitReason(event.reason)
|
|
80
|
+
const send = pageMightExit ? request.sendOnExit : request.send
|
|
81
|
+
|
|
82
|
+
if (
|
|
83
|
+
pageMightExit &&
|
|
84
|
+
// Note: checking that the encoder is async is not strictly needed, but it's an optimization:
|
|
85
|
+
// if the encoder is async we need to send two requests in some cases (one for encoded data
|
|
86
|
+
// and the other for non-encoded data). But if it's not async, we don't have to worry about
|
|
87
|
+
// it and always send a single request.
|
|
88
|
+
encoder.isAsync
|
|
89
|
+
) {
|
|
90
|
+
const encoderResult = encoder.finishSync()
|
|
91
|
+
|
|
92
|
+
// Send encoded messages
|
|
93
|
+
if (encoderResult.outputBytesCount) {
|
|
94
|
+
send(formatPayloadFromEncoder(encoderResult))
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
// Send messages that are not yet encoded at this point
|
|
98
|
+
const pendingMessages = [encoderResult.pendingData, upsertMessages].filter(Boolean).join('\n')
|
|
99
|
+
if (pendingMessages) {
|
|
100
|
+
send({
|
|
101
|
+
data: pendingMessages,
|
|
102
|
+
bytesCount: computeBytesCount(pendingMessages),
|
|
103
|
+
})
|
|
104
|
+
}
|
|
74
105
|
} else {
|
|
75
|
-
|
|
106
|
+
if (upsertMessages) {
|
|
107
|
+
encoder.write(encoder.isEmpty ? upsertMessages : `\n${upsertMessages}`)
|
|
108
|
+
}
|
|
109
|
+
encoder.finish((encoderResult) => {
|
|
110
|
+
send(formatPayloadFromEncoder(encoderResult))
|
|
111
|
+
})
|
|
76
112
|
}
|
|
77
|
-
this.flushController.notifyAfterAddMessage()
|
|
78
113
|
}
|
|
79
114
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
115
|
+
return {
|
|
116
|
+
flushController,
|
|
117
|
+
add: addOrUpdate,
|
|
118
|
+
upsert: addOrUpdate,
|
|
119
|
+
stop: flushSubscription.unsubscribe,
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
function formatPayloadFromEncoder(encoderResult: EncoderResult): Payload {
|
|
124
|
+
let data: string | Blob
|
|
125
|
+
if (typeof encoderResult.output === 'string') {
|
|
126
|
+
data = encoderResult.output
|
|
127
|
+
} else {
|
|
128
|
+
data = new Blob([encoderResult.output], {
|
|
129
|
+
// This will set the 'Content-Type: text/plain' header. Reasoning:
|
|
130
|
+
// * The intake rejects the request if there is no content type.
|
|
131
|
+
// * The browser will issue CORS preflight requests if we set it to 'application/json', which
|
|
132
|
+
// could induce higher intake load (and maybe has other impacts).
|
|
133
|
+
// * Also it's not quite JSON, since we are concatenating multiple JSON objects separated by
|
|
134
|
+
// new lines.
|
|
135
|
+
type: 'text/plain',
|
|
136
|
+
})
|
|
87
137
|
}
|
|
88
138
|
|
|
89
|
-
|
|
90
|
-
|
|
139
|
+
return {
|
|
140
|
+
data,
|
|
141
|
+
bytesCount: encoderResult.outputBytesCount,
|
|
142
|
+
encoding: encoderResult.encoding,
|
|
91
143
|
}
|
|
92
144
|
}
|
|
@@ -1,15 +1,21 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { getGlobalObject } from '../tools/globalObject'
|
|
2
|
+
import type { DefaultPrivacyLevel } from '../domain/configuration'
|
|
3
3
|
|
|
4
4
|
export interface BrowserWindowWithEventBridge extends Window {
|
|
5
5
|
DatadogEventBridge?: DatadogEventBridge
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
export interface DatadogEventBridge {
|
|
9
|
+
getCapabilities?(): string
|
|
10
|
+
getPrivacyLevel?(): DefaultPrivacyLevel
|
|
9
11
|
getAllowedWebViewHosts(): string
|
|
10
12
|
send(msg: string): void
|
|
11
13
|
}
|
|
12
14
|
|
|
15
|
+
export const enum BridgeCapability {
|
|
16
|
+
RECORDS = 'records',
|
|
17
|
+
}
|
|
18
|
+
|
|
13
19
|
export function getEventBridge<T, E>() {
|
|
14
20
|
const eventBridgeGlobal = getEventBridgeGlobal()
|
|
15
21
|
|
|
@@ -18,22 +24,35 @@ export function getEventBridge<T, E>() {
|
|
|
18
24
|
}
|
|
19
25
|
|
|
20
26
|
return {
|
|
27
|
+
getCapabilities() {
|
|
28
|
+
return JSON.parse(eventBridgeGlobal.getCapabilities?.() || '[]') as BridgeCapability[]
|
|
29
|
+
},
|
|
30
|
+
getPrivacyLevel() {
|
|
31
|
+
return eventBridgeGlobal.getPrivacyLevel?.()
|
|
32
|
+
},
|
|
21
33
|
getAllowedWebViewHosts() {
|
|
22
34
|
return JSON.parse(eventBridgeGlobal.getAllowedWebViewHosts()) as string[]
|
|
23
35
|
},
|
|
24
|
-
send(eventType: T, event: E) {
|
|
25
|
-
|
|
36
|
+
send(eventType: T, event: E, viewId?: string) {
|
|
37
|
+
const view = viewId ? { id: viewId } : undefined
|
|
38
|
+
eventBridgeGlobal.send(JSON.stringify({ eventType, event, view }))
|
|
26
39
|
},
|
|
27
40
|
}
|
|
28
41
|
}
|
|
29
42
|
|
|
43
|
+
export function bridgeSupports(capability: BridgeCapability): boolean {
|
|
44
|
+
const bridge = getEventBridge()
|
|
45
|
+
return !!bridge && bridge.getCapabilities().includes(capability)
|
|
46
|
+
}
|
|
47
|
+
|
|
30
48
|
export function canUseEventBridge(currentHost = getGlobalObject<Window>().location?.hostname): boolean {
|
|
31
49
|
const bridge = getEventBridge()
|
|
50
|
+
|
|
32
51
|
return (
|
|
33
52
|
!!bridge &&
|
|
34
53
|
bridge
|
|
35
54
|
.getAllowedWebViewHosts()
|
|
36
|
-
.some((allowedHost) => currentHost === allowedHost || endsWith(
|
|
55
|
+
.some((allowedHost) => currentHost === allowedHost || currentHost.endsWith(`.${allowedHost}`))
|
|
37
56
|
)
|
|
38
57
|
}
|
|
39
58
|
|
|
@@ -1,11 +1,26 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { PageMayExitEvent, PageExitReason } from '../browser/pageMayExitObservable'
|
|
2
|
+
import { isWorkerEnvironment } from '../tools/globalObject'
|
|
2
3
|
import { Observable } from '../tools/observable'
|
|
3
4
|
import type { TimeoutId } from '../tools/timer'
|
|
4
5
|
import { clearTimeout, setTimeout } from '../tools/timer'
|
|
6
|
+
import { ONE_SECOND } from '../tools/utils/timeUtils'
|
|
5
7
|
import type { Duration } from '../tools/utils/timeUtils'
|
|
8
|
+
import { RECOMMENDED_REQUEST_BYTES_LIMIT } from './httpRequest'
|
|
6
9
|
|
|
7
10
|
export type FlushReason = PageExitReason | 'duration_limit' | 'bytes_limit' | 'messages_limit' | 'session_expire'
|
|
8
11
|
|
|
12
|
+
/**
|
|
13
|
+
* flush automatically, aim to be lower than ALB connection timeout
|
|
14
|
+
* to maximize connection reuse.
|
|
15
|
+
*/
|
|
16
|
+
export const FLUSH_DURATION_LIMIT = (30 * ONE_SECOND) as Duration
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* When using the SDK in a Worker Environment, we limit the batch size to 1 to ensure it can be sent
|
|
20
|
+
* in a single event.
|
|
21
|
+
*/
|
|
22
|
+
export const MESSAGES_LIMIT = isWorkerEnvironment ? 1 : 50
|
|
23
|
+
|
|
9
24
|
export type FlushController = ReturnType<typeof createFlushController>
|
|
10
25
|
export interface FlushEvent {
|
|
11
26
|
reason: FlushReason
|
|
@@ -14,10 +29,7 @@ export interface FlushEvent {
|
|
|
14
29
|
}
|
|
15
30
|
|
|
16
31
|
interface FlushControllerOptions {
|
|
17
|
-
|
|
18
|
-
bytesLimit: number
|
|
19
|
-
durationLimit: Duration
|
|
20
|
-
pageExitObservable: Observable<PageExitEvent>
|
|
32
|
+
pageMayExitObservable: Observable<PageMayExitEvent>
|
|
21
33
|
sessionExpireObservable: Observable<void>
|
|
22
34
|
}
|
|
23
35
|
|
|
@@ -26,17 +38,14 @@ interface FlushControllerOptions {
|
|
|
26
38
|
* to happen. The implementation is designed to support both synchronous and asynchronous usages,
|
|
27
39
|
* but relies on invariants described in each method documentation to keep a coherent state.
|
|
28
40
|
*/
|
|
29
|
-
export function createFlushController({
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
pageExitObservable.subscribe((event) => flush(event.reason))
|
|
39
|
-
sessionExpireObservable.subscribe(() => flush('session_expire'))
|
|
41
|
+
export function createFlushController({ pageMayExitObservable, sessionExpireObservable }: FlushControllerOptions) {
|
|
42
|
+
const pageMayExitSubscription = pageMayExitObservable.subscribe((event) => flush(event.reason))
|
|
43
|
+
const sessionExpireSubscription = sessionExpireObservable.subscribe(() => flush('session_expire'))
|
|
44
|
+
|
|
45
|
+
const flushObservable = new Observable<FlushEvent>(() => () => {
|
|
46
|
+
pageMayExitSubscription.unsubscribe()
|
|
47
|
+
sessionExpireSubscription.unsubscribe()
|
|
48
|
+
})
|
|
40
49
|
|
|
41
50
|
let currentBytesCount = 0
|
|
42
51
|
let currentMessagesCount = 0
|
|
@@ -65,7 +74,7 @@ export function createFlushController({
|
|
|
65
74
|
if (durationLimitTimeoutId === undefined) {
|
|
66
75
|
durationLimitTimeoutId = setTimeout(() => {
|
|
67
76
|
flush('duration_limit')
|
|
68
|
-
},
|
|
77
|
+
}, FLUSH_DURATION_LIMIT)
|
|
69
78
|
}
|
|
70
79
|
}
|
|
71
80
|
|
|
@@ -85,16 +94,19 @@ export function createFlushController({
|
|
|
85
94
|
*
|
|
86
95
|
* This function needs to be called synchronously, right before adding the message, so no flush
|
|
87
96
|
* event can happen after `notifyBeforeAddMessage` and before adding the message.
|
|
97
|
+
*
|
|
98
|
+
* @param estimatedMessageBytesCount - an estimation of the message bytes count once it is
|
|
99
|
+
* actually added.
|
|
88
100
|
*/
|
|
89
|
-
notifyBeforeAddMessage(
|
|
90
|
-
if (currentBytesCount +
|
|
101
|
+
notifyBeforeAddMessage(estimatedMessageBytesCount: number) {
|
|
102
|
+
if (currentBytesCount + estimatedMessageBytesCount >= RECOMMENDED_REQUEST_BYTES_LIMIT) {
|
|
91
103
|
flush('bytes_limit')
|
|
92
104
|
}
|
|
93
105
|
// Consider the message to be added now rather than in `notifyAfterAddMessage`, because if no
|
|
94
106
|
// message was added yet and `notifyAfterAddMessage` is called asynchronously, we still want
|
|
95
107
|
// to notify when a flush is needed (for example on page exit).
|
|
96
108
|
currentMessagesCount += 1
|
|
97
|
-
currentBytesCount +=
|
|
109
|
+
currentBytesCount += estimatedMessageBytesCount
|
|
98
110
|
scheduleDurationLimitTimeout()
|
|
99
111
|
},
|
|
100
112
|
|
|
@@ -103,11 +115,16 @@ export function createFlushController({
|
|
|
103
115
|
*
|
|
104
116
|
* This function can be called asynchronously after the message was added, but in this case it
|
|
105
117
|
* should not be called if a flush event occurred in between.
|
|
118
|
+
*
|
|
119
|
+
* @param messageBytesCountDiff - the difference between the estimated message bytes count and
|
|
120
|
+
* its actual bytes count once added to the pool.
|
|
106
121
|
*/
|
|
107
|
-
notifyAfterAddMessage() {
|
|
108
|
-
|
|
122
|
+
notifyAfterAddMessage(messageBytesCountDiff = 0) {
|
|
123
|
+
currentBytesCount += messageBytesCountDiff
|
|
124
|
+
|
|
125
|
+
if (currentMessagesCount >= MESSAGES_LIMIT) {
|
|
109
126
|
flush('messages_limit')
|
|
110
|
-
} else if (currentBytesCount >=
|
|
127
|
+
} else if (currentBytesCount >= RECOMMENDED_REQUEST_BYTES_LIMIT) {
|
|
111
128
|
flush('bytes_limit')
|
|
112
129
|
}
|
|
113
130
|
},
|
|
@@ -117,6 +134,10 @@ export function createFlushController({
|
|
|
117
134
|
*
|
|
118
135
|
* This function needs to be called synchronously, right after removing the message, so no flush
|
|
119
136
|
* event can happen after removing the message and before `notifyAfterRemoveMessage`.
|
|
137
|
+
*
|
|
138
|
+
* @param messageBytesCount - the message bytes count that was added to the pool. Should
|
|
139
|
+
* correspond to the sum of bytes counts passed to `notifyBeforeAddMessage` and
|
|
140
|
+
* `notifyAfterAddMessage`.
|
|
120
141
|
*/
|
|
121
142
|
notifyAfterRemoveMessage(messageBytesCount: number) {
|
|
122
143
|
currentBytesCount -= messageBytesCount
|
|
@@ -1,11 +1,17 @@
|
|
|
1
|
-
import type { EndpointBuilder
|
|
2
|
-
import { addTelemetryError } from '../domain/telemetry'
|
|
1
|
+
import type { EndpointBuilder } from '../domain/configuration'
|
|
3
2
|
import type { Context } from '../tools/serialisation/context'
|
|
4
|
-
import { monitor } from '../tools/monitor'
|
|
5
|
-
import { addEventListener } from '../browser/addEventListener'
|
|
3
|
+
import { monitor, monitorError } from '../tools/monitor'
|
|
6
4
|
import type { RawError } from '../domain/error/error.types'
|
|
5
|
+
import { isExperimentalFeatureEnabled, ExperimentalFeature } from '../tools/experimentalFeatures'
|
|
6
|
+
import { Observable } from '../tools/observable'
|
|
7
|
+
import { ONE_KIBI_BYTE } from '../tools/utils/byteUtils'
|
|
7
8
|
import { newRetryState, sendWithRetryStrategy } from './sendWithRetryStrategy'
|
|
8
|
-
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* beacon payload max queue size implementation is 64kb
|
|
12
|
+
* ensure that we leave room for logs, rum and potential other users
|
|
13
|
+
*/
|
|
14
|
+
export const RECOMMENDED_REQUEST_BYTES_LIMIT = 16 * ONE_KIBI_BYTE
|
|
9
15
|
|
|
10
16
|
/**
|
|
11
17
|
* Use POST request without content type to:
|
|
@@ -16,18 +22,47 @@ import type { FlushReason } from './flushController'
|
|
|
16
22
|
* to be parsed correctly without content type header
|
|
17
23
|
*/
|
|
18
24
|
|
|
19
|
-
export
|
|
25
|
+
export interface HttpRequest<Body extends Payload = Payload> {
|
|
26
|
+
observable: Observable<HttpRequestEvent<Body>>
|
|
27
|
+
send(this: void, payload: Body): void
|
|
28
|
+
sendOnExit(this: void, payload: Body): void
|
|
29
|
+
}
|
|
20
30
|
|
|
21
31
|
export interface HttpResponse extends Context {
|
|
22
32
|
status: number
|
|
23
33
|
type?: ResponseType
|
|
24
34
|
}
|
|
25
35
|
|
|
36
|
+
export interface BandwidthStats {
|
|
37
|
+
ongoingByteCount: number
|
|
38
|
+
ongoingRequestCount: number
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export type HttpRequestEvent<Body extends Payload = Payload> =
|
|
42
|
+
| {
|
|
43
|
+
// A request to send the given payload failed. (We may retry.)
|
|
44
|
+
type: 'failure'
|
|
45
|
+
bandwidth: BandwidthStats
|
|
46
|
+
payload: Body
|
|
47
|
+
}
|
|
48
|
+
| {
|
|
49
|
+
// The given payload was discarded because the request queue is full.
|
|
50
|
+
type: 'queue-full'
|
|
51
|
+
bandwidth: BandwidthStats
|
|
52
|
+
payload: Body
|
|
53
|
+
}
|
|
54
|
+
| {
|
|
55
|
+
// A request to send the given payload succeeded.
|
|
56
|
+
type: 'success'
|
|
57
|
+
bandwidth: BandwidthStats
|
|
58
|
+
payload: Body
|
|
59
|
+
}
|
|
60
|
+
|
|
26
61
|
export interface Payload {
|
|
27
|
-
data: string | FormData
|
|
62
|
+
data: string | FormData | Blob
|
|
28
63
|
bytesCount: number
|
|
29
64
|
retry?: RetryInfo
|
|
30
|
-
|
|
65
|
+
encoding?: 'deflate'
|
|
31
66
|
}
|
|
32
67
|
|
|
33
68
|
export interface RetryInfo {
|
|
@@ -35,41 +70,52 @@ export interface RetryInfo {
|
|
|
35
70
|
lastFailureStatus: number
|
|
36
71
|
}
|
|
37
72
|
|
|
38
|
-
export function createHttpRequest(
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
bytesLimit: number
|
|
42
|
-
|
|
43
|
-
)
|
|
44
|
-
const retryState = newRetryState()
|
|
45
|
-
const sendStrategyForRetry = (payload: Payload, onResponse: (r: HttpResponse) => void) =>
|
|
46
|
-
fetchKeepAliveStrategy(configuration, endpointBuilder, bytesLimit, payload, onResponse)
|
|
73
|
+
export function createHttpRequest<Body extends Payload = Payload>(
|
|
74
|
+
endpointBuilders: EndpointBuilder[],
|
|
75
|
+
reportError: (error: RawError) => void,
|
|
76
|
+
bytesLimit: number = RECOMMENDED_REQUEST_BYTES_LIMIT
|
|
77
|
+
): HttpRequest<Body> {
|
|
78
|
+
const observable = new Observable<HttpRequestEvent<Body>>()
|
|
79
|
+
const retryState = newRetryState<Body>()
|
|
47
80
|
|
|
48
81
|
return {
|
|
49
|
-
|
|
50
|
-
|
|
82
|
+
observable,
|
|
83
|
+
send: (payload: Body) => {
|
|
84
|
+
for (const endpointBuilder of endpointBuilders) {
|
|
85
|
+
sendWithRetryStrategy(
|
|
86
|
+
payload,
|
|
87
|
+
retryState,
|
|
88
|
+
(payload, onResponse) => {
|
|
89
|
+
if (isExperimentalFeatureEnabled(ExperimentalFeature.AVOID_FETCH_KEEPALIVE)) {
|
|
90
|
+
fetchStrategy(endpointBuilder, payload, onResponse)
|
|
91
|
+
} else {
|
|
92
|
+
fetchKeepAliveStrategy(endpointBuilder, bytesLimit, payload, onResponse)
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
endpointBuilder.trackType,
|
|
96
|
+
reportError,
|
|
97
|
+
observable
|
|
98
|
+
)
|
|
99
|
+
}
|
|
51
100
|
},
|
|
52
101
|
/**
|
|
53
102
|
* Since fetch keepalive behaves like regular fetch on Firefox,
|
|
54
103
|
* keep using sendBeaconStrategy on exit
|
|
55
104
|
*/
|
|
56
|
-
sendOnExit: (payload:
|
|
57
|
-
|
|
105
|
+
sendOnExit: (payload: Body) => {
|
|
106
|
+
for (const endpointBuilder of endpointBuilders) {
|
|
107
|
+
sendBeaconStrategy(endpointBuilder, bytesLimit, payload)
|
|
108
|
+
}
|
|
58
109
|
},
|
|
59
110
|
}
|
|
60
111
|
}
|
|
61
112
|
|
|
62
|
-
function sendBeaconStrategy(
|
|
63
|
-
|
|
64
|
-
endpointBuilder: EndpointBuilder,
|
|
65
|
-
bytesLimit: number,
|
|
66
|
-
{ data, bytesCount, flushReason }: Payload
|
|
67
|
-
) {
|
|
68
|
-
const canUseBeacon = !!navigator.sendBeacon && bytesCount < bytesLimit
|
|
113
|
+
function sendBeaconStrategy(endpointBuilder: EndpointBuilder, bytesLimit: number, payload: Payload) {
|
|
114
|
+
const canUseBeacon = !!navigator.sendBeacon && payload.bytesCount < bytesLimit
|
|
69
115
|
if (canUseBeacon) {
|
|
70
116
|
try {
|
|
71
|
-
const beaconUrl = endpointBuilder.build('beacon',
|
|
72
|
-
const isQueued = navigator.sendBeacon(beaconUrl, data)
|
|
117
|
+
const beaconUrl = endpointBuilder.build('beacon', payload)
|
|
118
|
+
const isQueued = navigator.sendBeacon(beaconUrl, payload.data)
|
|
73
119
|
|
|
74
120
|
if (isQueued) {
|
|
75
121
|
return
|
|
@@ -79,8 +125,7 @@ function sendBeaconStrategy(
|
|
|
79
125
|
}
|
|
80
126
|
}
|
|
81
127
|
|
|
82
|
-
|
|
83
|
-
sendXHR(configuration, xhrUrl, data)
|
|
128
|
+
fetchStrategy(endpointBuilder, payload)
|
|
84
129
|
}
|
|
85
130
|
|
|
86
131
|
let hasReportedBeaconError = false
|
|
@@ -88,34 +133,41 @@ let hasReportedBeaconError = false
|
|
|
88
133
|
function reportBeaconError(e: unknown) {
|
|
89
134
|
if (!hasReportedBeaconError) {
|
|
90
135
|
hasReportedBeaconError = true
|
|
91
|
-
|
|
136
|
+
monitorError(e)
|
|
92
137
|
}
|
|
93
138
|
}
|
|
94
139
|
|
|
95
140
|
export function fetchKeepAliveStrategy(
|
|
96
|
-
configuration: Configuration,
|
|
97
141
|
endpointBuilder: EndpointBuilder,
|
|
98
142
|
bytesLimit: number,
|
|
99
|
-
|
|
143
|
+
payload: Payload,
|
|
100
144
|
onResponse?: (r: HttpResponse) => void
|
|
101
145
|
) {
|
|
102
|
-
const canUseKeepAlive = isKeepAliveSupported() && bytesCount < bytesLimit
|
|
146
|
+
const canUseKeepAlive = isKeepAliveSupported() && payload.bytesCount < bytesLimit
|
|
147
|
+
|
|
103
148
|
if (canUseKeepAlive) {
|
|
104
|
-
const fetchUrl = endpointBuilder.build('fetch',
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
monitor(() => {
|
|
108
|
-
|
|
109
|
-
// failed to queue the request
|
|
110
|
-
sendXHR(configuration, xhrUrl, data, onResponse)
|
|
111
|
-
})
|
|
112
|
-
)
|
|
149
|
+
const fetchUrl = endpointBuilder.build('fetch-keepalive', payload)
|
|
150
|
+
|
|
151
|
+
fetch(fetchUrl, { method: 'POST', body: payload.data, keepalive: true, mode: 'cors' })
|
|
152
|
+
.then(monitor((response: Response) => onResponse?.({ status: response.status, type: response.type })))
|
|
153
|
+
.catch(monitor(() => fetchStrategy(endpointBuilder, payload, onResponse)))
|
|
113
154
|
} else {
|
|
114
|
-
|
|
115
|
-
sendXHR(configuration, xhrUrl, data, onResponse)
|
|
155
|
+
fetchStrategy(endpointBuilder, payload, onResponse)
|
|
116
156
|
}
|
|
117
157
|
}
|
|
118
158
|
|
|
159
|
+
export function fetchStrategy(
|
|
160
|
+
endpointBuilder: EndpointBuilder,
|
|
161
|
+
payload: Payload,
|
|
162
|
+
onResponse?: (r: HttpResponse) => void
|
|
163
|
+
) {
|
|
164
|
+
const fetchUrl = endpointBuilder.build('fetch', payload)
|
|
165
|
+
|
|
166
|
+
fetch(fetchUrl, { method: 'POST', body: payload.data, mode: 'cors' })
|
|
167
|
+
.then(monitor((response: Response) => onResponse?.({ status: response.status, type: response.type })))
|
|
168
|
+
.catch(monitor(() => onResponse?.({ status: 0 })))
|
|
169
|
+
}
|
|
170
|
+
|
|
119
171
|
function isKeepAliveSupported() {
|
|
120
172
|
// Request can throw, cf https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#errors
|
|
121
173
|
try {
|
|
@@ -124,27 +176,3 @@ function isKeepAliveSupported() {
|
|
|
124
176
|
return false
|
|
125
177
|
}
|
|
126
178
|
}
|
|
127
|
-
|
|
128
|
-
export function sendXHR(
|
|
129
|
-
configuration: Configuration,
|
|
130
|
-
url: string,
|
|
131
|
-
data: Payload['data'],
|
|
132
|
-
onResponse?: (r: HttpResponse) => void
|
|
133
|
-
) {
|
|
134
|
-
const request = new XMLHttpRequest()
|
|
135
|
-
request.open('POST', url, true)
|
|
136
|
-
addEventListener(
|
|
137
|
-
configuration,
|
|
138
|
-
request,
|
|
139
|
-
'loadend',
|
|
140
|
-
() => {
|
|
141
|
-
onResponse?.({ status: request.status })
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
// prevent multiple onResponse callbacks
|
|
145
|
-
// if the xhr instance is reused by a third party
|
|
146
|
-
once: true,
|
|
147
|
-
}
|
|
148
|
-
)
|
|
149
|
-
request.send(data)
|
|
150
|
-
}
|
package/src/transport/index.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
export { HttpRequest,
|
|
2
|
-
export {
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
1
|
+
export type { BandwidthStats, HttpRequest, HttpRequestEvent, Payload, RetryInfo } from './httpRequest'
|
|
2
|
+
export { createHttpRequest } from './httpRequest'
|
|
3
|
+
export type { BrowserWindowWithEventBridge, DatadogEventBridge } from './eventBridge'
|
|
4
|
+
export { canUseEventBridge, bridgeSupports, getEventBridge, BridgeCapability } from './eventBridge'
|
|
5
|
+
export { createBatch } from './batch'
|
|
6
|
+
export type { FlushController, FlushEvent, FlushReason } from './flushController'
|
|
7
|
+
export { createFlushController, FLUSH_DURATION_LIMIT } from './flushController'
|