Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

monitoring oasys #4158

Merged
merged 3 commits into from
Nov 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 50 additions & 4 deletions terraform/environments/oasys/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,14 @@ locals {
region = "eu-west-2"
availability_zone = "eu-west-2a"

###
######
### env independent webserver vars
######

###
# web
###

webserver_a = {
config = merge(module.baseline_presets.ec2_instance.config.default, {
ami_name = "oasys_webserver_release_2023-07-02*"
Expand All @@ -41,7 +46,11 @@ locals {
monitoring = true
vpc_security_group_ids = ["private_web"]
})
cloudwatch_metric_alarms = {}
cloudwatch_metric_alarms = merge(
module.baseline_presets.cloudwatch_metric_alarms.ec2,
module.baseline_presets.cloudwatch_metric_alarms.ec2_cwagent_linux,
module.baseline_presets.cloudwatch_metric_alarms.ec2_instance_cwagent_collectd_service_status,
)
user_data_cloud_init = module.baseline_presets.ec2_instance.user_data_cloud_init.ssm_agent_ansible_no_tags
autoscaling_schedules = {
"scale_up" = {
Expand Down Expand Up @@ -98,6 +107,10 @@ locals {
}
}

###
# db
###

database_a = {
config = merge(module.baseline_presets.ec2_instance.config.db, {
ami_name = "oasys_oracle_db_release_2023-06-26T10-16-03.670Z"
Expand All @@ -113,6 +126,24 @@ locals {
backup-plan = "daily-and-weekly"
}
})
cloudwatch_metric_alarms = merge(
module.baseline_presets.cloudwatch_metric_alarms.ec2,
module.baseline_presets.cloudwatch_metric_alarms.ec2_cwagent_linux,
module.baseline_presets.cloudwatch_metric_alarms.ec2_instance_cwagent_collectd_service_status,
{
cpu-utilization-high = {
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = "120"
datapoints_to_alarm = "120"
metric_name = "CPUUtilization"
namespace = "AWS/EC2"
period = "60"
statistic = "Maximum"
threshold = "95"
alarm_description = "Triggers if the average cpu remains at 95% utilization or above for 2 hours on an oasys-db instance"
alarm_actions = ["dso_pagerduty"]
}
})
autoscaling_schedules = {}
autoscaling_group = module.baseline_presets.ec2_autoscaling_group.default
user_data_cloud_init = module.baseline_presets.ec2_instance.user_data_cloud_init.ssm_agent_ansible_no_tags
Expand Down Expand Up @@ -208,6 +239,9 @@ locals {
})
})

###
# bip
###

bip_a = {
config = merge(module.baseline_presets.ec2_instance.config.default, {
Expand All @@ -223,7 +257,11 @@ locals {
backup-plan = "daily-and-weekly"
}
})
cloudwatch_metric_alarms = {}
cloudwatch_metric_alarms = merge(
module.baseline_presets.cloudwatch_metric_alarms.ec2,
module.baseline_presets.cloudwatch_metric_alarms.ec2_cwagent_linux,
module.baseline_presets.cloudwatch_metric_alarms.ec2_instance_cwagent_collectd_service_status,
)
user_data_cloud_init = module.baseline_presets.ec2_instance.user_data_cloud_init.ssm_agent_ansible_no_tags
autoscaling_schedules = module.baseline_presets.ec2_autoscaling_schedules.working_hours
autoscaling_group = merge(module.baseline_presets.ec2_autoscaling_group.default, {
Expand Down Expand Up @@ -252,7 +290,15 @@ locals {
})
})

###
# other
###

baseline_secretsmanager_secrets = {}

baseline_cloudwatch_log_groups = {}
baseline_cloudwatch_metric_alarms = {}
baseline_cloudwatch_log_metric_filters = {}

public_key_data = jsondecode(file("./files/bastion_linux.json"))
}
}
21 changes: 21 additions & 0 deletions terraform/environments/oasys/locals_development.tf
Original file line number Diff line number Diff line change
Expand Up @@ -163,5 +163,26 @@ locals {
# ]
# }
}

baseline_cloudwatch_log_groups = {
session-manager-logs = {
retention_in_days = 1
}
cwagent-var-log-messages = {
retention_in_days = 1
}
cwagent-var-log-secure = {
retention_in_days = 1
}
cwagent-windows-system = {
retention_in_days = 1
}
cwagent-oasys-autologoff = {
retention_in_days = 1
}
cwagent-web-logs = {
retention_in_days = 1
}
}
}
}
21 changes: 21 additions & 0 deletions terraform/environments/oasys/locals_preproduction.tf
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,27 @@ locals {
# }
}

baseline_cloudwatch_log_groups = {
session-manager-logs = {
retention_in_days = 14
}
cwagent-var-log-messages = {
retention_in_days = 14
}
cwagent-var-log-secure = {
retention_in_days = 14
}
cwagent-windows-system = {
retention_in_days = 14
}
cwagent-oasys-autologoff = {
retention_in_days = 14
}
cwagent-web-logs = {
retention_in_days = 14
}
}

}
}

21 changes: 21 additions & 0 deletions terraform/environments/oasys/locals_production.tf
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,26 @@ locals {
# ]
# }
}

baseline_cloudwatch_log_groups = {
session-manager-logs = {
retention_in_days = 400
}
cwagent-var-log-messages = {
retention_in_days = 90
}
cwagent-var-log-secure = {
retention_in_days = 400
}
cwagent-windows-system = {
retention_in_days = 90
}
cwagent-oasys-autologoff = {
retention_in_days = 400
}
cwagent-web-logs = {
retention_in_days = 90
}
}
}
}
21 changes: 21 additions & 0 deletions terraform/environments/oasys/locals_test.tf
Original file line number Diff line number Diff line change
Expand Up @@ -554,5 +554,26 @@ locals {
]
}
}

baseline_cloudwatch_log_groups = {
session-manager-logs = {
retention_in_days = 7
}
cwagent-var-log-messages = {
retention_in_days = 7
}
cwagent-var-log-secure = {
retention_in_days = 7
}
cwagent-windows-system = {
retention_in_days = 7
}
cwagent-oasys-autologoff = {
retention_in_days = 7
}
cwagent-web-logs = {
retention_in_days = 7
}
}
}
}
16 changes: 15 additions & 1 deletion terraform/environments/oasys/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,21 @@ module "baseline" {
lookup(local.environment_config, "baseline_acm_certificates", {})
)

cloudwatch_log_groups = module.baseline_presets.cloudwatch_log_groups
cloudwatch_metric_alarms = merge(
local.baseline_cloudwatch_metric_alarms,
lookup(local.environment_config, "baseline_cloudwatch_metric_alarms", {})
)

cloudwatch_log_metric_filters = merge(
local.baseline_cloudwatch_log_metric_filters,
lookup(local.environment_config, "baseline_cloudwatch_log_metric_filters", {})
)

cloudwatch_log_groups = merge(
module.baseline_presets.cloudwatch_log_groups,
local.baseline_cloudwatch_log_groups,
lookup(local.environment_config, "baseline_cloudwatch_log_groups", {})
)
ec2_autoscaling_groups = lookup(local.environment_config, "baseline_ec2_autoscaling_groups", {})
ec2_instances = lookup(local.environment_config, "baseline_ec2_instances", {})
environment = module.environment
Expand Down
Loading