-
Notifications
You must be signed in to change notification settings - Fork 8.3k
/
task_runner.ts
331 lines (299 loc) · 9.53 KB
/
task_runner.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
/*
* 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 { pick, mapValues, omit } from 'lodash';
import { Logger, SavedObject } from '../../../../../src/core/server';
import { TaskRunnerContext } from './task_runner_factory';
import { ConcreteTaskInstance } from '../../../../plugins/task_manager/server';
import { createExecutionHandler } from './create_execution_handler';
import { AlertInstance, createAlertInstanceFactory } from '../alert_instance';
import { getNextRunAt } from './get_next_run_at';
import { validateAlertTypeParams } from '../lib';
import {
AlertType,
RawAlert,
IntervalSchedule,
Services,
AlertInfoParams,
RawAlertInstance,
AlertTaskState,
} from '../types';
import { promiseResult, map, Resultable, asOk, asErr, resolveErr } from '../lib/result_type';
import { taskInstanceToAlertTaskInstance } from './alert_task_instance';
import { AlertInstances } from '../alert_instance/alert_instance';
const FALLBACK_RETRY_INTERVAL: IntervalSchedule = { interval: '5m' };
interface AlertTaskRunResult {
state: AlertTaskState;
runAt: Date;
}
interface AlertTaskInstance extends ConcreteTaskInstance {
state: AlertTaskState;
}
export class TaskRunner {
private context: TaskRunnerContext;
private logger: Logger;
private taskInstance: AlertTaskInstance;
private alertType: AlertType;
constructor(
alertType: AlertType,
taskInstance: ConcreteTaskInstance,
context: TaskRunnerContext
) {
this.context = context;
this.logger = context.logger;
this.alertType = alertType;
this.taskInstance = taskInstanceToAlertTaskInstance(taskInstance);
}
async getApiKeyForAlertPermissions(alertId: string, spaceId: string) {
const namespace = this.context.spaceIdToNamespace(spaceId);
// Only fetch encrypted attributes here, we'll create a saved objects client
// scoped with the API key to fetch the remaining data.
const {
attributes: { apiKey },
} = await this.context.encryptedSavedObjectsPlugin.getDecryptedAsInternalUser<RawAlert>(
'alert',
alertId,
{ namespace }
);
return apiKey;
}
async getServicesWithSpaceLevelPermissions(spaceId: string, apiKey: string | null) {
const requestHeaders: Record<string, string> = {};
if (apiKey) {
requestHeaders.authorization = `ApiKey ${apiKey}`;
}
const fakeRequest = {
headers: requestHeaders,
getBasePath: () => this.context.getBasePath(spaceId),
path: '/',
route: { settings: {} },
url: {
href: '/',
},
raw: {
req: {
url: '/',
},
},
};
return this.context.getServices(fakeRequest);
}
private getExecutionHandler(
alertId: string,
alertName: string,
tags: string[] | undefined,
spaceId: string,
apiKey: string | null,
actions: RawAlert['actions'],
references: SavedObject['references']
) {
// Inject ids into actions
const actionsWithIds = actions.map(action => {
const actionReference = references.find(obj => obj.name === action.actionRef);
if (!actionReference) {
throw new Error(`Action reference "${action.actionRef}" not found in alert id: ${alertId}`);
}
return {
...action,
id: actionReference.id,
};
});
return createExecutionHandler({
alertId,
alertName,
tags,
logger: this.logger,
actionsPlugin: this.context.actionsPlugin,
apiKey,
actions: actionsWithIds,
spaceId,
alertType: this.alertType,
});
}
async executeAlertInstance(
alertInstanceId: string,
alertInstance: AlertInstance,
executionHandler: ReturnType<typeof createExecutionHandler>
) {
const { actionGroup, context, state } = alertInstance.getScheduledActionOptions()!;
alertInstance.updateLastScheduledActions(actionGroup);
alertInstance.unscheduleActions();
return executionHandler({ actionGroup, context, state, alertInstanceId });
}
async executeAlertInstances(
services: Services,
alertInfoParams: AlertInfoParams,
executionHandler: ReturnType<typeof createExecutionHandler>,
spaceId: string
): Promise<AlertTaskState> {
const {
params,
throttle,
muteAll,
mutedInstanceIds,
name,
tags,
createdBy,
updatedBy,
} = alertInfoParams;
const {
params: { alertId },
state: { alertInstances: alertRawInstances = {}, alertTypeState = {}, previousStartedAt },
} = this.taskInstance;
const namespace = this.context.spaceIdToNamespace(spaceId);
const alertInstances = mapValues<RawAlertInstance, AlertInstance>(
alertRawInstances,
rawAlertInstance => new AlertInstance(rawAlertInstance)
);
const updatedAlertTypeState = await this.alertType.executor({
alertId,
services: {
...services,
alertInstanceFactory: createAlertInstanceFactory(alertInstances),
},
params,
state: alertTypeState,
startedAt: this.taskInstance.startedAt!,
previousStartedAt: previousStartedAt ? new Date(previousStartedAt) : null,
spaceId,
namespace,
name,
tags,
createdBy,
updatedBy,
});
// Cleanup alert instances that are no longer scheduling actions to avoid over populating the alertInstances object
const instancesWithScheduledActions = pick<AlertInstances, AlertInstances>(
alertInstances,
(alertInstance: AlertInstance) => alertInstance.hasScheduledActions()
);
if (!muteAll) {
const enabledAlertInstances = omit<AlertInstances, AlertInstances>(
instancesWithScheduledActions,
...mutedInstanceIds
);
await Promise.all(
Object.entries(enabledAlertInstances)
.filter(
([, alertInstance]: [string, AlertInstance]) => !alertInstance.isThrottled(throttle)
)
.map(([id, alertInstance]: [string, AlertInstance]) =>
this.executeAlertInstance(id, alertInstance, executionHandler)
)
);
}
return {
alertTypeState: updatedAlertTypeState || undefined,
alertInstances: mapValues<AlertInstance, RawAlertInstance>(
instancesWithScheduledActions,
alertInstance => alertInstance.toRaw()
),
};
}
async validateAndExecuteAlert(
services: Services,
apiKey: string | null,
attributes: RawAlert,
references: SavedObject['references']
) {
const {
params: { alertId, spaceId },
} = this.taskInstance;
// Validate
const params = validateAlertTypeParams(this.alertType, attributes.params);
const executionHandler = this.getExecutionHandler(
alertId,
attributes.name,
attributes.tags,
spaceId,
apiKey,
attributes.actions,
references
);
return this.executeAlertInstances(
services,
{ ...attributes, params },
executionHandler,
spaceId
);
}
async loadAlertAttributesAndRun(): Promise<Resultable<AlertTaskRunResult, Error>> {
const {
params: { alertId, spaceId },
} = this.taskInstance;
const apiKey = await this.getApiKeyForAlertPermissions(alertId, spaceId);
const services = await this.getServicesWithSpaceLevelPermissions(spaceId, apiKey);
// Ensure API key is still valid and user has access
const { attributes, references } = await services.savedObjectsClient.get<RawAlert>(
'alert',
alertId
);
return {
state: await promiseResult<AlertTaskState, Error>(
this.validateAndExecuteAlert(services, apiKey, attributes, references)
),
runAt: asOk(
getNextRunAt(
new Date(this.taskInstance.startedAt!),
// we do not currently have a good way of returning the type
// from SavedObjectsClient, and as we currenrtly require a schedule
// and we only support `interval`, we can cast this safely
attributes.schedule as IntervalSchedule
)
),
};
}
async run(): Promise<AlertTaskRunResult> {
const {
params: { alertId },
startedAt: previousStartedAt,
state: originalState,
} = this.taskInstance;
const { state, runAt } = await errorAsAlertTaskRunResult(this.loadAlertAttributesAndRun());
return {
state: map<AlertTaskState, Error, AlertTaskState>(
state,
(stateUpdates: AlertTaskState) => {
return {
...stateUpdates,
previousStartedAt,
};
},
(err: Error) => {
this.logger.error(`Executing Alert "${alertId}" has resulted in Error: ${err.message}`);
return {
...originalState,
previousStartedAt,
};
}
),
runAt: resolveErr<Date, Error>(runAt, () =>
getNextRunAt(
new Date(),
// if we fail at this point we wish to recover but don't have access to the Alert's
// attributes, so we'll use a default interval to prevent the underlying task from
// falling into a failed state
FALLBACK_RETRY_INTERVAL
)
),
};
}
}
/**
* If an error is thrown, wrap it in an AlertTaskRunResult
* so that we can treat each field independantly
*/
async function errorAsAlertTaskRunResult(
future: Promise<Resultable<AlertTaskRunResult, Error>>
): Promise<Resultable<AlertTaskRunResult, Error>> {
try {
return await future;
} catch (e) {
return {
state: asErr(e),
runAt: asErr(e),
};
}
}