2022-10-25 14:21:37 +08:00
|
|
|
resource "aws_cloudwatch_metric_alarm" "ec2-StatusCheckFailed_System" {
|
2022-10-26 11:13:56 +08:00
|
|
|
alarm_name = "${var.cw-alarm-prefix}:EC2:StatusCheckFailed_System:${var.ec2-instance-id}"
|
2022-10-25 14:21:37 +08:00
|
|
|
comparison_operator = "GreaterThanThreshold"
|
|
|
|
evaluation_periods = "1"
|
|
|
|
metric_name = "StatusCheckFailed_System"
|
|
|
|
period = "300"
|
|
|
|
statistic = "Maximum"
|
|
|
|
threshold = 0
|
|
|
|
alarm_description = "EC2:StatusCheckFailed_System"
|
|
|
|
namespace = "AWS/EC2"
|
|
|
|
insufficient_data_actions = []
|
2022-10-26 11:13:56 +08:00
|
|
|
actions_enabled = var.actions-enabled
|
2022-10-25 14:21:37 +08:00
|
|
|
alarm_actions = [var.alarm-actions-emergency]
|
|
|
|
ok_actions = [var.alarm-actions-emergency]
|
|
|
|
dimensions = {
|
|
|
|
InstanceId = var.ec2-instance-id
|
|
|
|
}
|
|
|
|
tags = var.default-tags
|
|
|
|
lifecycle {
|
|
|
|
ignore_changes = [tags]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resource "aws_cloudwatch_metric_alarm" "ec2-StatusCheckFailed_Instance" {
|
2022-10-26 11:13:56 +08:00
|
|
|
alarm_name = "${var.cw-alarm-prefix}:EC2:StatusCheckFailed_Instance:${var.ec2-instance-id}"
|
2022-10-25 14:21:37 +08:00
|
|
|
comparison_operator = "GreaterThanThreshold"
|
|
|
|
evaluation_periods = "1"
|
|
|
|
metric_name = "StatusCheckFailed_Instance"
|
|
|
|
period = "300"
|
|
|
|
statistic = "Maximum"
|
|
|
|
threshold = 0
|
|
|
|
alarm_description = "EC2:StatusCheckFailed_Instance"
|
|
|
|
namespace = "AWS/EC2"
|
|
|
|
insufficient_data_actions = []
|
2022-10-26 11:13:56 +08:00
|
|
|
actions_enabled = var.actions-enabled
|
2022-10-25 14:21:37 +08:00
|
|
|
alarm_actions = [var.alarm-actions-emergency]
|
|
|
|
ok_actions = [var.alarm-actions-emergency]
|
|
|
|
dimensions = {
|
|
|
|
InstanceId = var.ec2-instance-id
|
|
|
|
}
|
|
|
|
tags = var.default-tags
|
|
|
|
lifecycle {
|
|
|
|
ignore_changes = [tags]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resource "aws_cloudwatch_metric_alarm" "ec2-CPUUtilization" {
|
2022-10-26 11:13:56 +08:00
|
|
|
alarm_name = "${var.cw-alarm-prefix}:EC2:CPUUtilization:${var.ec2-instance-id}"
|
2022-10-25 14:21:37 +08:00
|
|
|
comparison_operator = "GreaterThanThreshold"
|
|
|
|
evaluation_periods = "6"
|
|
|
|
metric_name = "CPUUtilization"
|
|
|
|
period = "300"
|
|
|
|
statistic = "Average"
|
|
|
|
threshold = var.threshold-CPUUtilization
|
|
|
|
alarm_description = "EC2:CPUUtilization"
|
|
|
|
namespace = "AWS/EC2"
|
|
|
|
insufficient_data_actions = []
|
2022-10-26 11:13:56 +08:00
|
|
|
actions_enabled = var.actions-enabled
|
2022-10-25 14:21:37 +08:00
|
|
|
alarm_actions = [var.alarm-actions-urgent]
|
|
|
|
ok_actions = [var.alarm-actions-urgent]
|
|
|
|
treat_missing_data = "notBreaching"
|
|
|
|
dimensions = {
|
|
|
|
InstanceId = var.ec2-instance-id
|
|
|
|
}
|
|
|
|
tags = var.default-tags
|
|
|
|
lifecycle {
|
|
|
|
ignore_changes = [tags]
|
|
|
|
}
|
2022-11-02 18:05:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
# cwagent metrics
|
|
|
|
data "aws_instance" "ec2-instance" {
|
|
|
|
instance_id = var.ec2-instance-id
|
|
|
|
}
|
|
|
|
|
|
|
|
resource "aws_cloudwatch_metric_alarm" "ec2-mem_free" {
|
|
|
|
alarm_name = "${var.cw-alarm-prefix}:EC2:mem_free:${var.ec2-instance-id}"
|
|
|
|
comparison_operator = "LessThanThreshold"
|
|
|
|
evaluation_periods = "2"
|
|
|
|
metric_name = "mem_free"
|
|
|
|
period = "900"
|
|
|
|
statistic = "Average"
|
|
|
|
threshold = var.threshold-mem_free
|
|
|
|
alarm_description = "EC2:mem_free"
|
|
|
|
namespace = "CWAgent"
|
|
|
|
insufficient_data_actions = []
|
|
|
|
actions_enabled = var.actions-enabled
|
|
|
|
alarm_actions = [var.alarm-actions-standard]
|
|
|
|
ok_actions = [var.alarm-actions-standard]
|
|
|
|
treat_missing_data = "notBreaching"
|
|
|
|
dimensions = {
|
|
|
|
InstanceId = var.ec2-instance-id
|
|
|
|
ImageId = data.aws_instance.ec2-instance.ami
|
|
|
|
InstanceType = data.aws_instance.ec2-instance.instance_type
|
|
|
|
}
|
|
|
|
tags = var.default-tags
|
|
|
|
lifecycle {
|
|
|
|
ignore_changes = [tags]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resource "aws_cloudwatch_metric_alarm" "ec2-swap_free" {
|
|
|
|
# zero is fine as most ec2 instances are deployed without any swap
|
|
|
|
alarm_name = "${var.cw-alarm-prefix}:EC2:swap_free:${var.ec2-instance-id}"
|
|
|
|
comparison_operator = "LessThanThreshold"
|
|
|
|
evaluation_periods = "2"
|
|
|
|
# metric_name = "swap_free"
|
|
|
|
# period = "900"
|
|
|
|
# statistic = "Average"
|
|
|
|
threshold = var.threshold-swap_free
|
|
|
|
alarm_description = "EC2:swap_free"
|
|
|
|
# namespace = "CWAgent"
|
|
|
|
insufficient_data_actions = []
|
|
|
|
actions_enabled = var.actions-enabled
|
|
|
|
alarm_actions = [var.alarm-actions-standard]
|
|
|
|
ok_actions = [var.alarm-actions-standard]
|
|
|
|
treat_missing_data = "notBreaching"
|
|
|
|
metric_query {
|
|
|
|
id = "m1"
|
|
|
|
metric {
|
|
|
|
metric_name = "swap_free"
|
|
|
|
namespace = "CWAgent"
|
|
|
|
period = 900
|
|
|
|
stat = "Average"
|
|
|
|
dimensions = {
|
|
|
|
InstanceId = var.ec2-instance-id
|
|
|
|
ImageId = data.aws_instance.ec2-instance.ami
|
|
|
|
InstanceType = data.aws_instance.ec2-instance.instance_type
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
metric_query {
|
|
|
|
id = "e1"
|
|
|
|
expression = "IF(m1==0, ${var.threshold-swap_free}, m1)"
|
|
|
|
label = "swap_free_if_not_zero"
|
|
|
|
return_data = "true"
|
|
|
|
}
|
|
|
|
|
|
|
|
#dimensions = {
|
|
|
|
# InstanceId = var.ec2-instance-id
|
|
|
|
# ImageId = data.aws_instance.ec2-instance.ami
|
|
|
|
# InstanceType = data.aws_instance.ec2-instance.instance_type
|
|
|
|
#}
|
|
|
|
tags = var.default-tags
|
|
|
|
lifecycle {
|
|
|
|
ignore_changes = [tags]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resource "aws_cloudwatch_metric_alarm" "ec2-disk_free" {
|
|
|
|
alarm_name = "${var.cw-alarm-prefix}:EC2:disk_free:${var.ec2-instance-id}"
|
|
|
|
comparison_operator = "LessThanThreshold"
|
|
|
|
evaluation_periods = "2"
|
|
|
|
metric_name = "disk_free"
|
|
|
|
period = "900"
|
|
|
|
statistic = "Average"
|
|
|
|
threshold = var.threshold-disk_free
|
|
|
|
alarm_description = "EC2:disk_free"
|
|
|
|
namespace = "CWAgent"
|
|
|
|
insufficient_data_actions = []
|
|
|
|
actions_enabled = var.actions-enabled
|
|
|
|
alarm_actions = [var.alarm-actions-urgent]
|
|
|
|
ok_actions = [var.alarm-actions-urgent]
|
|
|
|
treat_missing_data = "notBreaching"
|
|
|
|
dimensions = {
|
|
|
|
InstanceId = var.ec2-instance-id
|
|
|
|
ImageId = data.aws_instance.ec2-instance.ami
|
|
|
|
InstanceType = data.aws_instance.ec2-instance.instance_type
|
|
|
|
# The following will not work. AWS expects the device name from OS, not from AWS perspective
|
|
|
|
# device = one(data.aws_instance.ec2-instance.root_block_device[*].device_name)
|
|
|
|
# device = ""
|
|
|
|
fstype = "xfs"
|
|
|
|
path = "/"
|
|
|
|
}
|
|
|
|
tags = var.default-tags
|
|
|
|
lifecycle {
|
|
|
|
ignore_changes = [tags]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
resource "aws_cloudwatch_metric_alarm" "ec2-disk_inodes_free" {
|
|
|
|
alarm_name = "${var.cw-alarm-prefix}:EC2:disk_inodes_free:${var.ec2-instance-id}"
|
|
|
|
comparison_operator = "LessThanThreshold"
|
|
|
|
evaluation_periods = "2"
|
|
|
|
metric_name = "disk_inodes_free"
|
|
|
|
period = "300"
|
|
|
|
statistic = "Average"
|
|
|
|
threshold = var.threshold-disk_inodes_free
|
|
|
|
alarm_description = "EC2:disk_inodes_free"
|
|
|
|
namespace = "CWAgent"
|
|
|
|
insufficient_data_actions = []
|
|
|
|
actions_enabled = var.actions-enabled
|
|
|
|
alarm_actions = [var.alarm-actions-urgent]
|
|
|
|
ok_actions = [var.alarm-actions-urgent]
|
|
|
|
treat_missing_data = "notBreaching"
|
|
|
|
dimensions = {
|
|
|
|
InstanceId = var.ec2-instance-id
|
|
|
|
ImageId = data.aws_instance.ec2-instance.ami
|
|
|
|
InstanceType = data.aws_instance.ec2-instance.instance_type
|
|
|
|
# The following will not work. AWS expects the device name from OS, not from AWS perspective
|
|
|
|
# device = one(data.aws_instance.ec2-instance.root_block_device[*].device_name)
|
|
|
|
# device = ""
|
|
|
|
fstype = "xfs"
|
|
|
|
path = "/"
|
|
|
|
}
|
|
|
|
tags = var.default-tags
|
|
|
|
lifecycle {
|
|
|
|
ignore_changes = [tags]
|
|
|
|
}
|
2022-10-25 14:21:37 +08:00
|
|
|
}
|