forked from exceptionless/Exceptionless.JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefaultEventQueue.ts
More file actions
250 lines (209 loc) · 7.75 KB
/
DefaultEventQueue.ts
File metadata and controls
250 lines (209 loc) · 7.75 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
import { Configuration } from '../configuration/Configuration';
import { ILog } from '../logging/ILog';
import { IEvent } from '../models/IEvent';
import { IEventQueue } from '../queue/IEventQueue';
import { IStorageItem } from '../storage/IStorageItem';
import { SubmissionResponse } from '../submission/SubmissionResponse';
export class DefaultEventQueue implements IEventQueue {
/**
* The configuration object.
* @type {Configuration}
* @private
*/
private _config: Configuration;
/**
* A list of handlers that will be fired when events are submitted.
* @type {Array}
* @private
*/
private _handlers: Array<(events: IEvent[], response: SubmissionResponse) => void> = [];
/**
* Suspends processing until the specified time.
* @type {Date}
* @private
*/
private _suspendProcessingUntil: Date;
/**
* Discards queued items until the specified time.
* @type {Date}
* @private
*/
private _discardQueuedItemsUntil: Date;
/**
* Returns true if the queue is processing.
* @type {boolean}
* @private
*/
private _processingQueue: boolean = false;
/**
* Processes the queue every xx seconds.
* @type {Timer}
* @private
*/
private _queueTimer: any;
constructor(config: Configuration) {
this._config = config;
}
public enqueue(event: IEvent): void {
const eventWillNotBeQueued: string = 'The event will not be queued.'; // optimization for minifier.
const config: Configuration = this._config; // Optimization for minifier.
const log: ILog = config.log; // Optimization for minifier.
if (!config.enabled) {
log.info(`Configuration is disabled. ${eventWillNotBeQueued}`);
return;
}
if (!config.isValid) {
log.info(`Invalid Api Key. ${eventWillNotBeQueued}`);
return;
}
if (this.areQueuedItemsDiscarded()) {
log.info(`Queue items are currently being discarded. ${eventWillNotBeQueued}`);
return;
}
this.ensureQueueTimer();
const timestamp = config.storage.queue.save(event);
const logText = `type=${event.type} ${!!event.reference_id ? 'refid=' + event.reference_id : ''}`;
if (timestamp) {
log.info(`Enqueuing event: ${timestamp} ${logText}`);
} else {
log.error(`Could not enqueue event ${logText}`);
}
}
public process(isAppExiting?: boolean): void {
const queueNotProcessed: string = 'The queue will not be processed.'; // optimization for minifier.
const config: Configuration = this._config; // Optimization for minifier.
const log: ILog = config.log; // Optimization for minifier.
if (this._processingQueue) {
return;
}
log.info('Processing queue...');
if (!config.enabled) {
log.info(`Configuration is disabled. ${queueNotProcessed}`);
return;
}
if (!config.isValid) {
log.info(`Invalid Api Key. ${queueNotProcessed}`);
return;
}
this._processingQueue = true;
this.ensureQueueTimer();
try {
const events = config.storage.queue.get(config.submissionBatchSize);
if (!events || events.length === 0) {
this._processingQueue = false;
return;
}
log.info(`Sending ${events.length} events to ${config.serverUrl}.`);
config.submissionClient.postEvents(events.map((e) => e.value), config, (response: SubmissionResponse) => {
this.processSubmissionResponse(response, events);
this.eventsPosted(events.map((e) => e.value), response);
log.info('Finished processing queue.');
this._processingQueue = false;
}, isAppExiting);
} catch (ex) {
log.error(`Error processing queue: ${ex}`);
this.suspendProcessing();
this._processingQueue = false;
}
}
public suspendProcessing(durationInMinutes?: number, discardFutureQueuedItems?: boolean, clearQueue?: boolean): void {
const config: Configuration = this._config; // Optimization for minifier.
if (!durationInMinutes || durationInMinutes <= 0) {
durationInMinutes = 5;
}
config.log.info(`Suspending processing for ${durationInMinutes} minutes.`);
this._suspendProcessingUntil = new Date(new Date().getTime() + (durationInMinutes * 60000));
if (discardFutureQueuedItems) {
this._discardQueuedItemsUntil = this._suspendProcessingUntil;
}
if (clearQueue) {
// Account is over the limit and we want to ensure that the sample size being sent in will contain newer errors.
config.storage.queue.clear();
}
}
public onEventsPosted(handler: (events: IEvent[], response: SubmissionResponse) => void): void {
!!handler && this._handlers.push(handler);
}
private eventsPosted(events: IEvent[], response: SubmissionResponse) {
const handlers = this._handlers; // optimization for minifier.
for (const handler of handlers) {
try {
handler(events, response);
} catch (ex) {
this._config.log.error(`Error calling onEventsPosted handler: ${ex}`);
}
}
}
private areQueuedItemsDiscarded(): boolean {
return this._discardQueuedItemsUntil && this._discardQueuedItemsUntil > new Date();
}
private ensureQueueTimer(): void {
if (!this._queueTimer) {
this._queueTimer = setInterval(() => this.onProcessQueue(), 10000);
}
}
private isQueueProcessingSuspended(): boolean {
return this._suspendProcessingUntil && this._suspendProcessingUntil > new Date();
}
private onProcessQueue(): void {
if (!this.isQueueProcessingSuspended() && !this._processingQueue) {
this.process();
}
}
private processSubmissionResponse(response: SubmissionResponse, events: IStorageItem[]): void {
const noSubmission: string = 'The event will not be submitted.'; // Optimization for minifier.
const config: Configuration = this._config; // Optimization for minifier.
const log: ILog = config.log; // Optimization for minifier.
if (response.success) {
log.info(`Sent ${events.length} events.`);
this.removeEvents(events);
return;
}
if (response.serviceUnavailable) {
// You are currently over your rate limit or the servers are under stress.
log.error('Server returned service unavailable.');
this.suspendProcessing();
return;
}
if (response.paymentRequired) {
// If the organization over the rate limit then discard the event.
log.info('Too many events have been submitted, please upgrade your plan.');
this.suspendProcessing(null, true, true);
return;
}
if (response.unableToAuthenticate) {
// The api key was suspended or could not be authorized.
log.info(`Unable to authenticate, please check your configuration. ${noSubmission}`);
this.suspendProcessing(15);
this.removeEvents(events);
return;
}
if (response.notFound || response.badRequest) {
// The service end point could not be found.
log.error(`Error while trying to submit data: ${response.message}`);
this.suspendProcessing(60 * 4);
this.removeEvents(events);
return;
}
if (response.requestEntityTooLarge) {
const message = 'Event submission discarded for being too large.';
if (config.submissionBatchSize > 1) {
log.error(`${message} Retrying with smaller batch size.`);
config.submissionBatchSize = Math.max(1, Math.round(config.submissionBatchSize / 1.5));
} else {
log.error(`${message} ${noSubmission}`);
this.removeEvents(events);
}
return;
}
if (!response.success) {
log.error(`Error submitting events: ${response.message || 'Please check the network tab for more info.'}`);
this.suspendProcessing();
}
}
private removeEvents(events: IStorageItem[]) {
for (let index = 0; index < (events || []).length; index++) {
this._config.storage.queue.remove(events[index].timestamp);
}
}
}