forked from exceptionless/Exceptionless.JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIConfigurationSettings.ts
More file actions
28 lines (27 loc) · 1.21 KB
/
IConfigurationSettings.ts
File metadata and controls
28 lines (27 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { ILastReferenceIdManager } from '../lastReferenceIdManager/ILastReferenceIdManager';
import { ILog } from '../logging/ILog';
import { IEventQueue } from '../queue/IEventQueue';
import { IEnvironmentInfoCollector } from '../services/IEnvironmentInfoCollector';
import { IErrorParser } from '../services/IErrorParser';
import { IModuleCollector } from '../services/IModuleCollector';
import { IRequestInfoCollector } from '../services/IRequestInfoCollector';
import { IStorageProvider } from '../storage/IStorageProvider';
import { ISubmissionAdapter } from '../submission/ISubmissionAdapter';
import { ISubmissionClient } from '../submission/ISubmissionClient';
export interface IConfigurationSettings {
apiKey?: string;
serverUrl?: string;
heartbeatServerUrl?: string;
updateSettingsWhenIdleInterval?: number;
environmentInfoCollector?: IEnvironmentInfoCollector;
errorParser?: IErrorParser;
lastReferenceIdManager?: ILastReferenceIdManager;
log?: ILog;
moduleCollector?: IModuleCollector;
requestInfoCollector?: IRequestInfoCollector;
submissionBatchSize?: number;
submissionClient?: ISubmissionClient;
submissionAdapter?: ISubmissionAdapter;
storage?: IStorageProvider;
queue?: IEventQueue;
}