Skip to content
Snippets Groups Projects
Commit b2717b1e authored by Ole Langbehn's avatar Ole Langbehn
Browse files

feat(monitoring): HOLI-10120 HOLI-10121 pull monitoring into terraform

parent e7b793a1
Branches release/1.6.0
No related tags found
No related merge requests found
...@@ -13,6 +13,14 @@ data "terraform_remote_state" "holi_infra_state" { ...@@ -13,6 +13,14 @@ data "terraform_remote_state" "holi_infra_state" {
} }
} }
data "terraform_remote_state" "holi_infra_monitoring_state" {
backend = "gcs"
config = {
bucket = "holi-shared-terraform-state"
prefix = "infra-monitoring"
}
}
data "terraform_remote_state" "holi_chat_server_common_state" { data "terraform_remote_state" "holi_chat_server_common_state" {
backend = "gcs" backend = "gcs"
config = { config = {
......
resource "google_monitoring_alert_policy" "chat_server_cpu_utilization" { resource "google_monitoring_alert_policy" "chat_server_cpu_utilization" {
count = local.environment == "production" ? 1 : 0 count = local.environment == "production" ? 1 : 0
display_name = "COMO: Production chat server CPU utilization exceeded" display_name = "COMO: Production chat server CPU utilization exceeded"
notification_channels = [data.terraform_remote_state.holi_infra_state.outputs.monitoring_notification_channel_rocket_chat_production_id] notification_channels = [data.terraform_remote_state.holi_infra_monitoring_state.outputs.monitoring_notification_channel_rocket_chat_production_id]
severity = "WARNING" severity = "WARNING"
alert_strategy { alert_strategy {
auto_close = "86400s" # 1 day auto_close = "86400s" # 1 day
...@@ -41,7 +41,7 @@ resource "google_monitoring_alert_policy" "chat_server_cpu_utilization" { ...@@ -41,7 +41,7 @@ resource "google_monitoring_alert_policy" "chat_server_cpu_utilization" {
resource "google_monitoring_alert_policy" "chat_server_memory_utilization" { resource "google_monitoring_alert_policy" "chat_server_memory_utilization" {
count = local.environment == "production" ? 1 : 0 count = local.environment == "production" ? 1 : 0
display_name = "COMO: ${local.environment} chat server memory utilization exceeded" display_name = "COMO: ${local.environment} chat server memory utilization exceeded"
notification_channels = [data.terraform_remote_state.holi_infra_state.outputs.monitoring_notification_channel_rocket_chat_production_id] notification_channels = [data.terraform_remote_state.holi_infra_monitoring_state.outputs.monitoring_notification_channel_rocket_chat_production_id]
severity = "WARNING" severity = "WARNING"
alert_strategy { alert_strategy {
auto_close = "86400s" # 1 day auto_close = "86400s" # 1 day
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment