This repository was archived by the owner on Dec 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcloudwatch.ts
More file actions
565 lines (529 loc) · 17.2 KB
/
cloudwatch.ts
File metadata and controls
565 lines (529 loc) · 17.2 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
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
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
import * as fs from "fs"
import * as aws from "@pulumi/aws"
import * as pulumi from "@pulumi/pulumi"
import * as AWS from "aws-sdk"
import * as handlebars from "handlebars"
import * as asg from "./asg"
import * as config from "./config"
import * as ebs from "./ebs"
import * as ec2 from "./ec2"
import * as lb from "./lb"
import * as rds from "./rds"
import * as slots from "./slots"
import * as sns from "./sns"
const getLogGroupNames = new AWS.CloudWatchLogs({region: config.aws.region}).describeLogGroups({
logGroupNamePrefix: `/codeocean/${config.stackname}/`,
}).promise().then(v => v.logGroups?.map(v => v.logGroupName))
async function getLogGroupOpts(logGroupSuffix: string): Promise<pulumi.CustomResourceOptions | undefined> {
const logGroupNames = await getLogGroupNames
if (logGroupNames?.includes(`/codeocean/${config.stackname}/${logGroupSuffix}`)) {
return {
import: `/codeocean/${config.stackname}/${logGroupSuffix}`,
ignoreChanges: ["tags", "retentionInDays"],
}
}
return undefined
}
export const instancesLogGroup = getLogGroupOpts("instances").then(opts => {
return new aws.cloudwatch.LogGroup("instances", {
name: `/codeocean/${config.stackname}/instances`,
retentionInDays: 30,
tags: {
deployment: config.deploymentName,
},
}, opts)
})
export const servicesLogGroup = getLogGroupOpts("services").then(opts => {
return new aws.cloudwatch.LogGroup("services", {
name: `/codeocean/${config.stackname}/services`,
retentionInDays: 30,
tags: {
deployment: config.deploymentName,
},
}, opts)
})
export const workersLogGroup = getLogGroupOpts("workers").then(opts => {
return new aws.cloudwatch.LogGroup("workers", {
name: `/codeocean/${config.stackname}/workers`,
retentionInDays: 30,
tags: {
deployment: config.deploymentName,
},
}, opts)
})
if (!config.workers.general.maintainIdleWorker) {
// Scale out when all computation run requests in an evaluation period fail with an overloaded status
new aws.cloudwatch.MetricAlarm("workers-available-slots-low", {
alarmActions: [asg.workersAvailableSlotsScaleOutPolicy.arn],
alarmDescription: "No workers available to execute a computation task",
comparisonOperator: "GreaterThanOrEqualToThreshold",
datapointsToAlarm: 1,
dimensions: {
"InstanceID": ec2.servicesInstance.id,
"MachineType": "0",
},
evaluationPeriods: 1,
metricName: "OverloadStatus",
namespace: "CodeOcean",
period: 10,
statistic: "Minimum",
tags: {
deployment: config.deploymentName,
},
threshold: 1,
})
// Scale in whenever a worker is idle
new aws.cloudwatch.MetricAlarm("workers-slot-utilization-low", {
alarmActions: [asg.workersAvailableSlotsScaleInPolicy.arn],
alarmDescription: "Workers slot utilization is low",
comparisonOperator: "LessThanOrEqualToThreshold",
datapointsToAlarm: config.workers.general.autoScalingIdleTimeout,
dimensions: {
AutoScalingGroupName: asg.workersAsg.name,
},
evaluationPeriods: config.workers.general.autoScalingIdleTimeout,
metricName: "SlotsUtilization",
namespace: "CodeOcean",
period: 60,
statistic: "Minimum",
threshold: 0,
tags: {
deployment: config.deploymentName,
},
treatMissingData: "notBreaching",
})
} else {
// Scale out so we have machine with the maximum amount of slots we make a available for a single run
new aws.cloudwatch.MetricAlarm("workers-available-slots-low", {
alarmActions: [asg.workersAvailableSlotsScaleOutPolicy.arn],
alarmDescription: "Workers available slots are low",
comparisonOperator: "LessThanThreshold",
datapointsToAlarm: 6,
dimensions: {
AutoScalingGroupName: asg.workersAsg.name,
},
evaluationPeriods: 6,
metricName: "AvailableSlots",
namespace: "CodeOcean",
period: 10,
statistic: "Maximum",
threshold: slots.config.general.slotsPerWorker,
tags: {
deployment: config.deploymentName,
},
})
// Scale in so we have a maximum of 1 excess machine
new aws.cloudwatch.MetricAlarm("workers-available-slots-high", {
alarmActions: [asg.workersAvailableSlotsScaleInPolicy.arn],
alarmDescription: "Workers available slots are high",
comparisonOperator: "GreaterThanOrEqualToThreshold",
datapointsToAlarm: 6,
dimensions: {
AutoScalingGroupName: asg.workersAsg.name,
},
evaluationPeriods: 6,
metricName: "AvailableSlots",
namespace: "CodeOcean",
period: 10,
statistic: "Sum",
threshold: pulumi.output(slots.config.general.slotsPerWorker).apply(v => v * 2 * 10),
tags: {
deployment: config.deploymentName,
},
})
}
if (!config.workers.gpu.maintainIdleWorker) {
// Scale out when all computation run requests in an evaluation period fail with an overloaded status
new aws.cloudwatch.MetricAlarm("workers-gpu-available-slots-low", {
alarmActions: [asg.workersGpuAvailableSlotsScaleOutPolicy.arn],
alarmDescription: "No gpu workers available to execute a computation task",
comparisonOperator: "GreaterThanOrEqualToThreshold",
datapointsToAlarm: 1,
dimensions: {
"InstanceID": ec2.servicesInstance.id,
"MachineType": "1",
},
evaluationPeriods: 1,
metricName: "OverloadStatus",
namespace: "CodeOcean",
period: 10,
statistic: "Minimum",
tags: {
deployment: config.deploymentName,
},
threshold: 1,
})
// Scale in whenever a worker is idle
new aws.cloudwatch.MetricAlarm("workers-gpu-slot-utilization-low", {
alarmActions: [asg.workersGpuAvailableSlotsScaleInPolicy.arn],
alarmDescription: "Workers gpu slot utilization is low",
comparisonOperator: "LessThanOrEqualToThreshold",
datapointsToAlarm: config.workers.gpu.autoScalingIdleTimeout,
dimensions: {
AutoScalingGroupName: asg.workersGpuAsg.name,
},
evaluationPeriods: config.workers.gpu.autoScalingIdleTimeout,
metricName: "SlotsUtilization",
namespace: "CodeOcean",
period: 60,
statistic: "Minimum",
threshold: 0,
tags: {
deployment: config.deploymentName,
},
treatMissingData: "notBreaching",
})
} else {
// Scale out so we have machine with the maximum amount of slots we make a available for a single run
new aws.cloudwatch.MetricAlarm("workers-gpu-available-slots-low", {
alarmActions: [asg.workersGpuAvailableSlotsScaleOutPolicy.arn],
alarmDescription: "Workers gpu available slots are low",
comparisonOperator: "LessThanThreshold",
datapointsToAlarm: 6,
dimensions: {
AutoScalingGroupName: asg.workersGpuAsg.name,
},
evaluationPeriods: 6,
metricName: "AvailableSlots",
namespace: "CodeOcean",
period: 10,
statistic: "Maximum",
threshold: slots.config.general.slotsPerWorker,
tags: {
deployment: config.deploymentName,
},
})
// Scale in so we have a maximum of 1 excess machine
new aws.cloudwatch.MetricAlarm("workers-gpu-available-slots-high", {
alarmActions: [asg.workersGpuAvailableSlotsScaleInPolicy.arn],
alarmDescription: "Workers gpu available slots are high",
comparisonOperator: "GreaterThanOrEqualToThreshold",
datapointsToAlarm: 6,
dimensions: {
AutoScalingGroupName: asg.workersGpuAsg.name,
},
evaluationPeriods: 6,
metricName: "AvailableSlots",
namespace: "CodeOcean",
period: 10,
statistic: "Sum",
threshold: pulumi.output(slots.config.gpu.slotsPerWorker).apply(v => v * 2 * 10),
tags: {
deployment: config.deploymentName,
},
})
}
interface VolumeUsageAlarmArgs {
minutesToAlarm: number
path: string
threshold: number
volumeName: string
}
// Services machine alarms
function servicesVolumeHighUsageAlarm(args: VolumeUsageAlarmArgs) {
new aws.cloudwatch.MetricAlarm(`services-${args.volumeName}-volume-usage-${args.threshold}`, {
alarmActions: [sns.alarmsTopic],
alarmDescription: `Services machine ${args.volumeName} volume usage is more than ${args.threshold}`,
comparisonOperator: "GreaterThanThreshold",
datapointsToAlarm: args.minutesToAlarm,
dimensions: {
InstanceId: ec2.servicesInstance.id,
path: args.path,
},
evaluationPeriods: args.minutesToAlarm,
metricName: "disk_used_percent",
namespace: "CWAgent",
okActions: [sns.alarmsTopic],
period: 60,
statistic: "Maximum",
threshold: args.threshold,
tags: {
deployment: config.deploymentName,
},
})
}
servicesVolumeHighUsageAlarm({
minutesToAlarm: 30,
path: "/",
threshold: 90,
volumeName: "root",
})
servicesVolumeHighUsageAlarm({
minutesToAlarm: 10,
path: "/data",
threshold: 70,
volumeName: "data",
})
servicesVolumeHighUsageAlarm({
minutesToAlarm: 10,
path: "/data",
threshold: 95,
volumeName: "data",
})
servicesVolumeHighUsageAlarm({
minutesToAlarm: 30,
path: "/docker",
threshold: 90,
volumeName: "docker",
})
new aws.cloudwatch.MetricAlarm("services-cpu-usage-high", {
alarmActions: [sns.alarmsTopic],
alarmDescription: "Services machine CPU usage is high",
comparisonOperator: "GreaterThanThreshold",
datapointsToAlarm: 6,
dimensions: {
InstanceId: ec2.servicesInstance.id,
},
evaluationPeriods: 6,
metricName: "CPUUtilization",
namespace: "AWS/EC2",
okActions: [sns.alarmsTopic],
period: 300,
statistic: "Average",
threshold: 70,
tags: {
deployment: config.deploymentName,
},
})
new aws.cloudwatch.MetricAlarm("services-memory-usage-high", {
alarmActions: [sns.alarmsTopic],
alarmDescription: "Services machine memory usage is high",
comparisonOperator: "GreaterThanThreshold",
datapointsToAlarm: 6,
dimensions: {
InstanceId: ec2.servicesInstance.id,
},
evaluationPeriods: 6,
metricName: "mem_used_percent",
namespace: "CWAgent",
okActions: [sns.alarmsTopic],
period: 300,
statistic: "Average",
threshold: 80,
tags: {
deployment: config.deploymentName,
},
})
// System up alarm.
// We use the web target group as an indicator for the entire services host.
new aws.cloudwatch.MetricAlarm("services-unhealthy-host", {
alarmActions: [sns.alarmsTopic],
alarmDescription: "Services machine is not responding to load balancer health checks",
comparisonOperator: "GreaterThanThreshold",
datapointsToAlarm: 1,
dimensions: {
LoadBalancer: lb.externalAlb.arnSuffix,
TargetGroup: lb.webTargetGroup.arnSuffix,
},
evaluationPeriods: 1,
metricName: "UnHealthyHostCount",
namespace: "AWS/ApplicationELB",
okActions: [sns.alarmsTopic],
period: 60,
statistic: "Maximum",
threshold: 0,
tags: {
deployment: config.deploymentName,
},
})
// Internal Server Errors
new aws.cloudwatch.LogMetricFilter("services-500", {
logGroupName: pulumi.output(servicesLogGroup).apply(v => v.name),
pattern: "[date, time, service!=cw-proxy, level, source=GIN, status=500, ...]",
metricTransformation: {
namespace: "CodeOcean",
value: "1",
name: "Services_HTTP_500_LogCount",
},
})
new aws.cloudwatch.LogMetricFilter("workers-500", {
logGroupName: pulumi.output(workersLogGroup).apply(v => v.name),
pattern: "[date, time, service, level, source=GIN, status=500, ...]",
metricTransformation: {
namespace: "CodeOcean",
value: "1",
name: "Workers_HTTP_500_LogCount",
},
})
new aws.cloudwatch.MetricAlarm("internal-server-errors", {
alarmActions: [sns.alarmsTopic],
alarmDescription: "Internal server errors returned by CodeOcean services",
comparisonOperator: "GreaterThanThreshold",
evaluationPeriods: 1,
okActions: [sns.alarmsTopic],
threshold: 0,
metricQueries: [{
expression: "(m1+m2)",
id: "e1",
label: "500 Error Count",
returnData: true,
}, {
id: "m1",
metric: {
metricName: "Services_HTTP_500_LogCount",
namespace: "CodeOcean",
period: 60,
stat: "Sum",
},
}, {
id: "m2",
metric: {
metricName: "Workers_HTTP_500_LogCount",
namespace: "CodeOcean",
period: 60,
stat: "Sum",
},
}],
tags: {
deployment: config.deploymentName,
},
})
// Critical level log messages
new aws.cloudwatch.LogMetricFilter("services-critical", {
logGroupName: pulumi.output(servicesLogGroup).apply(v => v.name),
pattern: "[date, time, service, level=CRITICAL, ...]",
metricTransformation: {
namespace: "CodeOcean",
value: "1",
name: "Services_Critical_LogCount",
},
})
new aws.cloudwatch.LogMetricFilter("workers-critical", {
logGroupName: pulumi.output(workersLogGroup).apply(v => v.name),
pattern: "[date, time, service, level=CRITICAL, ...]",
metricTransformation: {
namespace: "CodeOcean",
value: "1",
name: "Workers_Critical_LogCount",
},
})
new aws.cloudwatch.MetricAlarm("critical-errors", {
alarmActions: [sns.alarmsTopic],
alarmDescription: "Critical level errors returned by CodeOcean services",
comparisonOperator: "GreaterThanThreshold",
evaluationPeriods: 1,
okActions: [sns.alarmsTopic],
threshold: 0,
metricQueries: [{
expression: "(m1+m2)",
id: "e1",
label: "Critical Error Count",
returnData: true,
}, {
id: "m1",
metric: {
metricName: "Services_Critical_LogCount",
namespace: "CodeOcean",
period: 60,
stat: "Sum",
},
}, {
id: "m2",
metric: {
metricName: "Workers_Critical_LogCount",
namespace: "CodeOcean",
period: 60,
stat: "Sum",
},
}],
tags: {
deployment: config.deploymentName,
},
})
// Workers alarms
function workersVolumeHighUsageAlarm(args: VolumeUsageAlarmArgs) {
new aws.cloudwatch.MetricAlarm(`workers-${args.volumeName}-volume-usage-${args.threshold}`, {
alarmActions: [sns.alarmsTopic],
alarmDescription: `Worker machine ${args.volumeName} volume usage is more than ${args.threshold}`,
comparisonOperator: "GreaterThanThreshold",
datapointsToAlarm: args.minutesToAlarm,
dimensions: {
AutoScalingGroupName: asg.workersAsg.name,
path: args.path,
},
evaluationPeriods: args.minutesToAlarm,
metricName: "disk_used_percent",
namespace: "CWAgent",
okActions: [sns.alarmsTopic],
period: 60,
statistic: "Maximum",
threshold: args.threshold,
tags: {
deployment: config.deploymentName,
},
})
}
workersVolumeHighUsageAlarm({
minutesToAlarm: 30,
path: "/",
threshold: 90,
volumeName: "root",
})
workersVolumeHighUsageAlarm({
minutesToAlarm: 10,
path: "/docker",
threshold: 90,
volumeName: "docker",
})
workersVolumeHighUsageAlarm({
minutesToAlarm: 10,
path: "/worker",
threshold: 90,
volumeName: "worker",
})
// RDS
new aws.cloudwatch.MetricAlarm("analyticsdb-storage", {
alarmActions: [sns.alarmsTopic],
alarmDescription: "Free storage space in Analytics RDS DB is low",
comparisonOperator: "LessThanThreshold",
datapointsToAlarm: 10,
dimensions: {
DBInstanceIdentifier: rds.analytics.id,
},
evaluationPeriods: 10,
metricName: "FreeStorageSpace",
namespace: "AWS/RDS",
okActions: [sns.alarmsTopic],
period: 60,
statistic: "Maximum",
tags: {
deployment: config.deploymentName,
},
threshold: 2048,
})
new aws.cloudwatch.MetricAlarm("analyticsdb-cpu", {
alarmActions: [sns.alarmsTopic],
alarmDescription: "Analytics RDS DB CPU usage is high",
comparisonOperator: "GreaterThanThreshold",
datapointsToAlarm: 10,
dimensions: {
DBInstanceIdentifier: rds.analytics.id,
},
evaluationPeriods: 10,
metricName: "CPUUtilization",
namespace: "AWS/RDS",
okActions: [sns.alarmsTopic],
period: 60,
statistic: "Maximum",
tags: {
deployment: config.deploymentName,
},
threshold: 90,
})
// Dashboard
new aws.cloudwatch.Dashboard("codeocean-dashboard", {
dashboardName: `codeocean-${config.stackname}`,
dashboardBody: pulumi.all([
ebs.dataVolume.id,
config.aws.region,
]).apply(([
dataVolumeId,
awsRegion,
]) => {
const template = handlebars.compile(fs.readFileSync("ebs-dashboard.json", "utf8"))
return template({
dataVolumeId,
awsRegion,
})
}),
})