-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathalarms.tf
435 lines (360 loc) · 15.8 KB
/
alarms.tf
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
locals {
minute = 60
default_alarms = {
# cluster status
cluster_status_red = {
alarm_name = "${aws_opensearch_domain.this.domain_name}_cluster_status_red"
alarm_description = "${aws_opensearch_domain.this.domain_name} has entered redstatus. One or more primary shard and its replicaes are not allocated to a node"
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = 5
threshold = 5
period = 1 * local.minute
namespace = "AWS/ES"
metric_name = "ClusterStatus.red"
statistic = "Maximum"
treat_missing_data = "breaching"
dimensions = {
DomainName = aws_opensearch_domain.this.domain_name
ClientId = data.aws_caller_identity.current.account_id
}
alarm_actions = var.alarm_actions
ok_actions = var.ok_actions
insufficient_data_actions = var.insufficient_data_actions
}
cluster_status_yellow = {
alarm_name = "${aws_opensearch_domain.this.domain_name}_cluster_status_yellow"
alarm_description = "${aws_opensearch_domain.this.domain_name} has entered yellow status. One or more indexes do not have a replica shard. "
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = 5
threshold = 1
period = 1 * local.minute
namespace = "AWS/ES"
metric_name = "ClusterStatus.yellow"
statistic = "Maximum"
treat_missing_data = "notBreaching"
dimensions = {
DomainName = aws_opensearch_domain.this.domain_name
}
alarm_actions = var.alarm_actions
ok_actions = var.ok_actions
insufficient_data_actions = var.insufficient_data_actions
}
cluster_writes_blocked = {
alarm_name = "${aws_opensearch_domain.this.domain_name}_cluster_writes_blocked"
alarm_description = "${aws_opensearch_domain.this.domain_name} is blocking write requests"
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = 5
threshold = 5
period = 1 * local.minute
namespace = "AWS/ES"
metric_name = "ClusterIndexWritesBlocked"
statistic = "Maximum"
treat_missing_data = "breaching"
dimensions = {
DomainName = aws_opensearch_domain.this.domain_name
ClientId = data.aws_caller_identity.current.account_id
}
alarm_actions = var.alarm_actions
ok_actions = var.ok_actions
insufficient_data_actions = var.insufficient_data_actions
}
unreachable_nodes = {
alarm_name = "${aws_opensearch_domain.this.domain_name}_unreachable_nodes"
alarm_description = "at least one node in your cluster has been unreachable for one day"
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = 1
threshold = 1
period = 60 * local.minute * 24
namespace = "AWS/ES"
metric_name = "Nodes"
statistic = "Maximum"
treat_missing_data = "notBreaching"
dimensions = {
DomainName = aws_opensearch_domain.this.domain_name
}
alarm_actions = var.alarm_actions
ok_actions = var.ok_actions
insufficient_data_actions = var.insufficient_data_actions
}
# /cluster status
# cpu utilization
data_high_cpu_utilization = {
alarm_name = "${aws_opensearch_domain.this.domain_name}_data_high_cpu_util"
alarm_description = "high cpu utilization on aos data nodes"
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = 3
threshold = 80
period = 15 * local.minute
unit = "Percent"
namespace = "AWS/ES"
metric_name = "CPUUtilization"
statistic = "Maximum"
treat_missing_data = "notBreaching"
dimensions = {
DomainName = aws_opensearch_domain.this.domain_name
}
alarm_actions = var.alarm_actions
ok_actions = var.ok_actions
insufficient_data_actions = var.insufficient_data_actions
}
master_high_cpu_utilization = {
alarm_name = "${aws_opensearch_domain.this.domain_name}_master_high_cpu_util"
alarm_description = "high cpu utilization on aos master nodes"
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = 3
threshold = 80
period = 15 * local.minute
unit = "Percent"
namespace = "AWS/ES"
metric_name = "MasterCPUUtilization"
statistic = "Maximum"
treat_missing_data = "notBreaching"
dimensions = {
DomainName = aws_opensearch_domain.this.domain_name
}
alarm_actions = var.alarm_actions
ok_actions = var.ok_actions
insufficient_data_actions = var.insufficient_data_actions
}
warm_high_cpu_utilization = {
create_metric_alarm = var.warm_instance_enabled
alarm_name = "${aws_opensearch_domain.this.domain_name}_warm_high_cpu_util"
alarm_description = "high cpu utilization on aos warm nodes"
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = 3
threshold = 80
period = 15 * local.minute
unit = "Percent"
namespace = "AWS/ES"
metric_name = "WarmCPUUtilization"
statistic = "Maximum"
treat_missing_data = "notBreaching"
dimensions = {
DomainName = aws_opensearch_domain.this.domain_name
}
alarm_actions = var.alarm_actions
ok_actions = var.ok_actions
insufficient_data_actions = var.insufficient_data_actions
}
# /cpuutilization
# jvm pressure
data_high_jvm_pressure = {
alarm_name = "${aws_opensearch_domain.this.domain_name}_data_high_jvm_pressure"
alarm_description = "high jvm_pressure on aos data nodes"
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = 3
threshold = 95
period = 15 * local.minute
unit = "Percent"
namespace = "AWS/ES"
metric_name = "JVMMemoryPressure"
statistic = "Maximum"
treat_missing_data = "notBreaching"
dimensions = {
DomainName = aws_opensearch_domain.this.domain_name
}
alarm_actions = var.alarm_actions
ok_actions = var.ok_actions
insufficient_data_actions = var.insufficient_data_actions
}
data_high_oldjvm_pressure = {
alarm_name = "${aws_opensearch_domain.this.domain_name}_data_high_oldgenjvm_pressure"
alarm_description = "high old gen jvm pressure on aos warm nodes"
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = 3
threshold = 95
period = 15 * local.minute
unit = "Percent"
namespace = "AWS/ES"
metric_name = "OldGenJVMMemoryPressure"
statistic = "Maximum"
treat_missing_data = "notBreaching"
dimensions = {
DomainName = aws_opensearch_domain.this.domain_name
}
alarm_actions = var.alarm_actions
ok_actions = var.ok_actions
insufficient_data_actions = var.insufficient_data_actions
}
master_high_jvm_pressure = {
alarm_name = "${aws_opensearch_domain.this.domain_name}_master_high_jvm_pressure"
alarm_description = "high jvm_pressure on aos master nodes"
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = 3
threshold = 95
period = 15 * local.minute
unit = "Percent"
namespace = "AWS/ES"
metric_name = "MasterJVMMemoryPressure"
statistic = "Maximum"
treat_missing_data = "notBreaching"
dimensions = {
DomainName = aws_opensearch_domain.this.domain_name
}
alarm_actions = var.alarm_actions
ok_actions = var.ok_actions
insufficient_data_actions = var.insufficient_data_actions
}
master_high_oldjvm_pressure = {
alarm_name = "${aws_opensearch_domain.this.domain_name}_master_high_oldgenjvm_pressure"
alarm_description = "high old gen jvm pressure on aos master nodes"
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = 3
threshold = 80
period = 60 * local.minute
unit = "Percent"
namespace = "AWS/ES"
metric_name = "MasterOldGenJVMMemoryPressure"
statistic = "Maximum"
treat_missing_data = "notBreaching"
dimensions = {
DomainName = aws_opensearch_domain.this.domain_name
}
alarm_actions = var.alarm_actions
ok_actions = var.ok_actions
insufficient_data_actions = var.insufficient_data_actions
}
# /jvmpressure
# kms
aos_key_error = {
create_metric_alarm = var.encrypt_kms_key_id != null
alarm_name = "${aws_opensearch_domain.this.domain_name}_aos_key_error"
alarm_description = "the AWS KMS encryption key that is used to encrypt data at rest in your domain is disabled"
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = 1
threshold = 1
period = 1 * local.minute
unit = "Percent"
namespace = "AWS/ES"
metric_name = "KMSKeyError"
statistic = "Maximum"
treat_missing_data = "notBreaching"
dimensions = {
DomainName = aws_opensearch_domain.this.domain_name
}
alarm_actions = var.alarm_actions
ok_actions = var.ok_actions
insufficient_data_actions = var.insufficient_data_actions
}
aos_key_inaccessible = {
create_metric_alarm = var.encrypt_kms_key_id != null
alarm_name = "${aws_opensearch_domain.this.domain_name}_aos_key_inaccessible"
alarm_description = "the AWS KMS encryption key that is used to encrypt data at rest in your domain has been deleted or has revoked its grants to OpenSearch Service"
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = 1
threshold = 1
period = 1 * local.minute
unit = "Percent"
namespace = "AWS/ES"
metric_name = "KMSKeyInaccessible"
statistic = "Maximum"
treat_missing_data = "notBreaching"
dimensions = {
DomainName = aws_opensearch_domain.this.domain_name
}
alarm_actions = var.alarm_actions
ok_actions = var.ok_actions
insufficient_data_actions = var.insufficient_data_actions
}
# 5xx errors
server_errors = {
alarm_name = "${aws_opensearch_domain.this.domain_name}_server_errors"
alarm_description = "One or more data nodes might be overloaded, or requests are failing to complete within the idle timeout period"
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = 1
threshold = 3
period = 10 * local.minute
namespace = "AWS/ES"
metric_name = "5xx"
statistic = "Maximum"
treat_missing_data = "notBreaching"
dimensions = {
DomainName = aws_opensearch_domain.this.domain_name
}
alarm_actions = var.alarm_actions
ok_actions = var.ok_actions
insufficient_data_actions = var.insufficient_data_actions
}
# threadpool
threadpool_high_write_avg = {
alarm_name = "${aws_opensearch_domain.this.domain_name}_high_threadpool_write_queue_avg"
alarm_description = "the cluster is experiencing high indexing concurrency"
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = 1
threshold = 100
period = 1 * local.minute
namespace = "AWS/ES"
metric_name = "ThreadpoolWriteQueue"
statistic = "Average"
treat_missing_data = "notBreaching"
dimensions = {
DomainName = aws_opensearch_domain.this.domain_name
}
alarm_actions = var.alarm_actions
ok_actions = var.ok_actions
insufficient_data_actions = var.insufficient_data_actions
}
threadpool_high_search_avg = {
alarm_name = "${aws_opensearch_domain.this.domain_name}_high_threadpool_search_avg"
alarm_description = " The cluster is experiencing high search concurrency. Consider scaling your cluster. You can also increase the search queue size, but increasing it excessively can cause out of memory errors."
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = 1
threshold = 500
period = 1 * local.minute
namespace = "AWS/ES"
metric_name = "ThreadpoolSearchQueue"
statistic = "Average"
treat_missing_data = "notBreaching"
dimensions = {
DomainName = aws_opensearch_domain.this.domain_name
}
alarm_actions = var.alarm_actions
ok_actions = var.ok_actions
insufficient_data_actions = var.insufficient_data_actions
}
threadpool_high_search_max = {
alarm_name = "${aws_opensearch_domain.this.domain_name}_high_threadpool_search_max"
alarm_description = " The cluster is experiencing high search concurrency. Consider scaling your cluster. You can also increase the search queue size, but increasing it excessively can cause out of memory errors."
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = 1
threshold = 5000
period = 1 * local.minute
namespace = "AWS/ES"
metric_name = "ThreadpoolSearchQueue"
statistic = "Maximum"
treat_missing_data = "notBreaching"
dimensions = {
DomainName = aws_opensearch_domain.this.domain_name
}
alarm_actions = var.alarm_actions
ok_actions = var.ok_actions
insufficient_data_actions = var.insufficient_data_actions
}
# Migrations
hot_to_warm_migration_failure = {
create_metric_alarm = var.warm_instance_enabled
alarm_name = "${aws_opensearch_domain.this.domain_name}_hot_to_warm_migration_failure"
alarm_description = "Hot to warm migration failure"
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = 1
threshold = 1
period = 1 * local.minute
namespace = "AWS/ES"
metric_name = "HotToWarmMigrationFailureCount"
statistic = "Maximum"
treat_missing_data = "notBreaching"
dimensions = {
DomainName = aws_opensearch_domain.this.domain_name
}
alarm_actions = var.alarm_actions
ok_actions = var.ok_actions
insufficient_data_actions = var.insufficient_data_actions
}
}
alarms = { for k, v in local.default_alarms : k => merge(v, try(var.alarm_overrides[k], {})) if var.create_alarms && !contains(var.disabled_alarms, k) }
}
module "cloudwatch_alarms" {
source = "terraform-aws-modules/cloudwatch/aws//wrappers/metric-alarm"
version = "~> 5.4.0"
items = local.alarms
}