monkey-front-core 0.0.549 → 0.0.551
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/esm2020/lib/core/interfaces/index.mjs +2 -1
- package/esm2020/lib/core/interfaces/monkeyecx-group.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-me-credentials.mjs +1 -1
- package/esm2020/lib/core/interfaces/monkeyecx-token-credentials.mjs +1 -1
- package/esm2020/lib/core/services/config/monkeyecx-logs-config.service.mjs +7 -5
- package/fesm2015/monkey-front-core.mjs +6 -4
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +6 -4
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/interfaces/index.d.ts +1 -0
- package/lib/core/interfaces/monkeyecx-group.d.ts +13 -0
- package/lib/core/interfaces/monkeyecx-me-credentials.d.ts +2 -1
- package/lib/core/interfaces/monkeyecx-token-credentials.d.ts +9 -0
- package/monkey-front-core-0.0.551.tgz +0 -0
- package/package.json +2 -2
- package/monkey-front-core-0.0.549.tgz +0 -0
|
@@ -3909,14 +3909,16 @@ class MonkeyEcxLogsConfigService {
|
|
|
3909
3909
|
clientToken: environment?.dataDogClientToken,
|
|
3910
3910
|
service: program?.token,
|
|
3911
3911
|
site: 'datadoghq.com',
|
|
3912
|
-
|
|
3913
|
-
|
|
3912
|
+
sessionSampleRate: 100,
|
|
3913
|
+
sessionReplaySampleRate: 100,
|
|
3914
3914
|
env: `monkey-front-${identifyCode}-${environment.environment}`,
|
|
3915
3915
|
version: configBootstrap?.version,
|
|
3916
|
-
trackInteractions: true,
|
|
3917
3916
|
trackSessionAcrossSubdomains: true,
|
|
3918
3917
|
useSecureSessionCookie: true,
|
|
3919
|
-
|
|
3918
|
+
trackResources: true,
|
|
3919
|
+
trackLongTasks: true,
|
|
3920
|
+
trackUserInteractions: true,
|
|
3921
|
+
defaultPrivacyLevel: 'mask-user-input'
|
|
3920
3922
|
});
|
|
3921
3923
|
datadogRum.startSessionReplayRecording();
|
|
3922
3924
|
}
|