-
Notifications
You must be signed in to change notification settings - Fork 8.2k
/
alerts_client.ts
457 lines (423 loc) · 13.2 KB
/
alerts_client.ts
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
import Boom from 'boom';
import { omit } from 'lodash';
import { i18n } from '@kbn/i18n';
import { Logger, SavedObjectsClientContract, SavedObjectReference } from 'src/core/server';
import { Alert, RawAlert, AlertTypeRegistry, AlertAction, AlertType } from './types';
import { TaskManagerStartContract } from './shim';
import { validateAlertTypeParams } from './lib';
import { CreateAPIKeyResult as SecurityPluginCreateAPIKeyResult } from '../../../../plugins/security/server';
interface FailedCreateAPIKeyResult {
created: false;
}
interface SuccessCreateAPIKeyResult {
created: true;
result: SecurityPluginCreateAPIKeyResult;
}
export type CreateAPIKeyResult = FailedCreateAPIKeyResult | SuccessCreateAPIKeyResult;
interface ConstructorOptions {
logger: Logger;
taskManager: TaskManagerStartContract;
savedObjectsClient: SavedObjectsClientContract;
alertTypeRegistry: AlertTypeRegistry;
spaceId?: string;
getUserName: () => Promise<string | null>;
createAPIKey: () => Promise<CreateAPIKeyResult>;
}
interface FindOptions {
options?: {
perPage?: number;
page?: number;
search?: string;
defaultSearchOperator?: 'AND' | 'OR';
searchFields?: string[];
sortField?: string;
hasReference?: {
type: string;
id: string;
};
fields?: string[];
filter?: string;
};
}
interface FindResult {
page: number;
perPage: number;
total: number;
data: object[];
}
interface CreateOptions {
data: Pick<
Alert,
Exclude<
keyof Alert,
'createdBy' | 'updatedBy' | 'apiKey' | 'apiKeyOwner' | 'muteAll' | 'mutedInstanceIds'
>
>;
options?: {
migrationVersion?: Record<string, string>;
};
}
interface UpdateOptions {
id: string;
data: {
name: string;
tags: string[];
interval: string;
actions: AlertAction[];
alertTypeParams: Record<string, any>;
};
}
export class AlertsClient {
private readonly logger: Logger;
private readonly getUserName: () => Promise<string | null>;
private readonly spaceId?: string;
private readonly taskManager: TaskManagerStartContract;
private readonly savedObjectsClient: SavedObjectsClientContract;
private readonly alertTypeRegistry: AlertTypeRegistry;
private readonly createAPIKey: () => Promise<CreateAPIKeyResult>;
constructor({
alertTypeRegistry,
savedObjectsClient,
taskManager,
logger,
spaceId,
getUserName,
createAPIKey,
}: ConstructorOptions) {
this.logger = logger;
this.getUserName = getUserName;
this.spaceId = spaceId;
this.taskManager = taskManager;
this.alertTypeRegistry = alertTypeRegistry;
this.savedObjectsClient = savedObjectsClient;
this.createAPIKey = createAPIKey;
}
public async create({ data, options }: CreateOptions) {
// Throws an error if alert type isn't registered
const alertType = this.alertTypeRegistry.get(data.alertTypeId);
const validatedAlertTypeParams = validateAlertTypeParams(alertType, data.alertTypeParams);
const apiKey = await this.createAPIKey();
const username = await this.getUserName();
this.validateActions(alertType, data.actions);
const { alert: rawAlert, references } = this.getRawAlert({
...data,
createdBy: username,
updatedBy: username,
apiKeyOwner: apiKey.created && username ? username : undefined,
apiKey: apiKey.created
? Buffer.from(`${apiKey.result.id}:${apiKey.result.api_key}`).toString('base64')
: undefined,
alertTypeParams: validatedAlertTypeParams,
muteAll: false,
mutedInstanceIds: [],
});
const createdAlert = await this.savedObjectsClient.create('alert', rawAlert, {
...options,
references,
});
if (data.enabled) {
let scheduledTask;
try {
scheduledTask = await this.scheduleAlert(
createdAlert.id,
rawAlert.alertTypeId,
rawAlert.interval
);
} catch (e) {
// Cleanup data, something went wrong scheduling the task
try {
await this.savedObjectsClient.delete('alert', createdAlert.id);
} catch (err) {
// Skip the cleanup error and throw the task manager error to avoid confusion
this.logger.error(
`Failed to cleanup alert "${createdAlert.id}" after scheduling task failed. Error: ${err.message}`
);
}
throw e;
}
await this.savedObjectsClient.update('alert', createdAlert.id, {
scheduledTaskId: scheduledTask.id,
});
createdAlert.attributes.scheduledTaskId = scheduledTask.id;
}
return this.getAlertFromRaw(createdAlert.id, createdAlert.attributes, references);
}
public async get({ id }: { id: string }) {
const result = await this.savedObjectsClient.get('alert', id);
return this.getAlertFromRaw(result.id, result.attributes, result.references);
}
public async find({ options = {} }: FindOptions = {}): Promise<FindResult> {
const results = await this.savedObjectsClient.find({
...options,
type: 'alert',
});
const data = results.saved_objects.map(result =>
this.getAlertFromRaw(result.id, result.attributes, result.references)
);
return {
page: results.page,
perPage: results.per_page,
total: results.total,
data,
};
}
public async delete({ id }: { id: string }) {
const alertSavedObject = await this.savedObjectsClient.get('alert', id);
const removeResult = await this.savedObjectsClient.delete('alert', id);
if (alertSavedObject.attributes.scheduledTaskId) {
await this.taskManager.remove(alertSavedObject.attributes.scheduledTaskId);
}
return removeResult;
}
public async update({ id, data }: UpdateOptions) {
const { attributes, version } = await this.savedObjectsClient.get('alert', id);
const alertType = this.alertTypeRegistry.get(attributes.alertTypeId);
const apiKey = await this.createAPIKey();
// Validate
const validatedAlertTypeParams = validateAlertTypeParams(alertType, data.alertTypeParams);
this.validateActions(alertType, data.actions);
const { actions, references } = this.extractReferences(data.actions);
const username = await this.getUserName();
const updatedObject = await this.savedObjectsClient.update(
'alert',
id,
{
...attributes,
...data,
alertTypeParams: validatedAlertTypeParams,
actions,
updatedBy: username,
apiKeyOwner: apiKey.created ? username : null,
apiKey: apiKey.created
? Buffer.from(`${apiKey.result.id}:${apiKey.result.api_key}`).toString('base64')
: null,
},
{
version,
references,
}
);
return this.getAlertFromRaw(id, updatedObject.attributes, updatedObject.references);
}
public async updateApiKey({ id }: { id: string }) {
const { version, attributes } = await this.savedObjectsClient.get('alert', id);
const apiKey = await this.createAPIKey();
const username = await this.getUserName();
await this.savedObjectsClient.update(
'alert',
id,
{
...attributes,
updatedBy: username,
apiKeyOwner: apiKey.created ? username : null,
apiKey: apiKey.created
? Buffer.from(`${apiKey.result.id}:${apiKey.result.api_key}`).toString('base64')
: null,
},
{ version }
);
}
public async enable({ id }: { id: string }) {
const { attributes, version } = await this.savedObjectsClient.get('alert', id);
if (attributes.enabled === false) {
const apiKey = await this.createAPIKey();
const scheduledTask = await this.scheduleAlert(
id,
attributes.alertTypeId,
attributes.interval
);
const username = await this.getUserName();
await this.savedObjectsClient.update(
'alert',
id,
{
...attributes,
enabled: true,
updatedBy: username,
apiKeyOwner: apiKey.created ? username : null,
scheduledTaskId: scheduledTask.id,
apiKey: apiKey.created
? Buffer.from(`${apiKey.result.id}:${apiKey.result.api_key}`).toString('base64')
: null,
},
{ version }
);
}
}
public async disable({ id }: { id: string }) {
const { attributes, version } = await this.savedObjectsClient.get('alert', id);
if (attributes.enabled === true) {
await this.savedObjectsClient.update(
'alert',
id,
{
...attributes,
enabled: false,
scheduledTaskId: null,
apiKey: null,
apiKeyOwner: null,
updatedBy: await this.getUserName(),
},
{ version }
);
await this.taskManager.remove(attributes.scheduledTaskId);
}
}
public async muteAll({ id }: { id: string }) {
await this.savedObjectsClient.update('alert', id, {
muteAll: true,
mutedInstanceIds: [],
updatedBy: await this.getUserName(),
});
}
public async unmuteAll({ id }: { id: string }) {
await this.savedObjectsClient.update('alert', id, {
muteAll: false,
mutedInstanceIds: [],
updatedBy: await this.getUserName(),
});
}
public async muteInstance({
alertId,
alertInstanceId,
}: {
alertId: string;
alertInstanceId: string;
}) {
const { attributes, version } = await this.savedObjectsClient.get('alert', alertId);
const mutedInstanceIds = attributes.mutedInstanceIds || [];
if (!attributes.muteAll && !mutedInstanceIds.includes(alertInstanceId)) {
mutedInstanceIds.push(alertInstanceId);
await this.savedObjectsClient.update(
'alert',
alertId,
{
mutedInstanceIds,
updatedBy: await this.getUserName(),
},
{ version }
);
}
}
public async unmuteInstance({
alertId,
alertInstanceId,
}: {
alertId: string;
alertInstanceId: string;
}) {
const { attributes, version } = await this.savedObjectsClient.get('alert', alertId);
const mutedInstanceIds = attributes.mutedInstanceIds || [];
if (!attributes.muteAll && mutedInstanceIds.includes(alertInstanceId)) {
await this.savedObjectsClient.update(
'alert',
alertId,
{
updatedBy: await this.getUserName(),
mutedInstanceIds: mutedInstanceIds.filter((id: string) => id !== alertInstanceId),
},
{ version }
);
}
}
private async scheduleAlert(id: string, alertTypeId: string, interval: string) {
return await this.taskManager.schedule({
taskType: `alerting:${alertTypeId}`,
params: {
alertId: id,
spaceId: this.spaceId,
},
state: {
previousStartedAt: null,
alertTypeState: {},
alertInstances: {},
},
scope: ['alerting'],
});
}
private extractReferences(actions: Alert['actions']) {
const references: SavedObjectReference[] = [];
const rawActions = actions.map((action, i) => {
const actionRef = `action_${i}`;
references.push({
name: actionRef,
type: 'action',
id: action.id,
});
return {
...omit(action, 'id'),
actionRef,
};
}) as RawAlert['actions'];
return {
actions: rawActions,
references,
};
}
private injectReferencesIntoActions(
actions: RawAlert['actions'],
references: SavedObjectReference[]
) {
return actions.map((action, i) => {
const reference = references.find(ref => ref.name === action.actionRef);
if (!reference) {
throw new Error(`Reference ${action.actionRef} not found`);
}
return {
...omit(action, 'actionRef'),
id: reference.id,
};
}) as Alert['actions'];
}
private getAlertFromRaw(
id: string,
rawAlert: Partial<RawAlert>,
references: SavedObjectReference[] | undefined
) {
if (!rawAlert.actions) {
return {
id,
...rawAlert,
};
}
const actions = this.injectReferencesIntoActions(rawAlert.actions, references || []);
return {
id,
...rawAlert,
actions,
};
}
private getRawAlert(alert: Alert): { alert: RawAlert; references: SavedObjectReference[] } {
const { references, actions } = this.extractReferences(alert.actions);
return {
alert: {
...alert,
actions,
},
references,
};
}
private validateActions(alertType: AlertType, actions: Alert['actions']) {
// TODO: Should also ensure user has access to each action
const { actionGroups: alertTypeActionGroups } = alertType;
const usedAlertActionGroups = actions.map(action => action.group);
const invalidActionGroups = usedAlertActionGroups.filter(
group => !alertTypeActionGroups.includes(group)
);
if (invalidActionGroups.length) {
throw Boom.badRequest(
i18n.translate('xpack.alerting.alertsClient.validateActions.invalidGroups', {
defaultMessage: 'Invalid action groups: {groups}',
values: {
groups: invalidActionGroups.join(', '),
},
})
);
}
}
}