@@ -147,8 +147,10 @@ export declare class Utils {
147
147
export interface IConfigurationSettings {
148
148
apiKey ?: string ;
149
149
serverUrl ?: string ;
150
+ configServerUrl ?: string ;
150
151
heartbeatServerUrl ?: string ;
151
152
updateSettingsWhenIdleInterval ?: number ;
153
+ includePrivateInformation ?: boolean ;
152
154
environmentInfoCollector ?: IEnvironmentInfoCollector ;
153
155
errorParser ?: IErrorParser ;
154
156
lastReferenceIdManager ?: ILastReferenceIdManager ;
@@ -162,6 +164,7 @@ export interface IConfigurationSettings {
162
164
queue ?: IEventQueue ;
163
165
}
164
166
export declare class SettingsManager {
167
+ private static _isUpdatingSettings ;
165
168
private static _handlers ;
166
169
static onChanged ( handler : ( config : Configuration ) => void ) : void ;
167
170
static applySavedServerSettings ( config : Configuration ) : void ;
@@ -349,20 +352,36 @@ export declare class Configuration implements IConfigurationSettings {
349
352
queue : IEventQueue ;
350
353
private _apiKey ;
351
354
private _serverUrl ;
355
+ private _configServerUrl ;
352
356
private _heartbeatServerUrl ;
353
357
private _updateSettingsWhenIdleInterval ;
354
358
private _dataExclusions ;
359
+ private _includePrivateInformation ;
360
+ private _includeUserName ;
361
+ private _includeMachineName ;
362
+ private _includeIpAddress ;
363
+ private _includeCookies ;
364
+ private _includePostData ;
365
+ private _includeQueryString ;
355
366
private _userAgentBotPatterns ;
356
367
private _plugins ;
357
368
private _handlers ;
358
369
constructor ( configSettings ?: IConfigurationSettings ) ;
359
370
apiKey : string ;
360
371
readonly isValid : boolean ;
361
372
serverUrl : string ;
373
+ configServerUrl : string ;
362
374
heartbeatServerUrl : string ;
363
375
updateSettingsWhenIdleInterval : number ;
364
376
readonly dataExclusions : string [ ] ;
365
377
addDataExclusions ( ...exclusions : string [ ] ) : void ;
378
+ includePrivateInformation : boolean ;
379
+ includeUserName : boolean ;
380
+ includeMachineName : boolean ;
381
+ includeIpAddress : boolean ;
382
+ includeCookies : boolean ;
383
+ includePostData : boolean ;
384
+ includeQueryString : boolean ;
366
385
readonly userAgentBotPatterns : string [ ] ;
367
386
addUserAgentBotPatterns ( ...userAgentBotPatterns : string [ ] ) : void ;
368
387
readonly plugins : IEventPlugin [ ] ;
0 commit comments