data "template_file" "filter" { template = "$${filter}" vars { filter = "${var.use_filter_tags == "true" ? format("dd_monitoring:enabled,dd_azure_storage:enabled,env:%s", var.environment) : "subscription_id:${var.subscription_id}"}" } } resource "datadog_monitor" "su_utilization" { name = "[${var.environment}] Stram Analytics streaming Units utilization at more than ${var.su_utilization_threshold_critical}% on {{name}}" message = "${var.message}" query = < ${var.su_utilization_threshold_critical} EOF type = "query alert" notify_no_data = "${var.notify_no_data}" evaluation_delay = "${var.delay}" renotify_interval = 60 notify_audit = false timeout_h = 0 include_tags = true locked = false require_full_window = true new_host_delay = "${var.delay}" no_data_timeframe = 20 thresholds { warning = "${var.su_utilization_threshold_warning}" critical = "${var.su_utilization_threshold_critical}" } tags = ["env:${var.environment}","resource:${var.service}","team:${var.provider}"] } resource "datadog_monitor" "failed_function_requests" { name = "[${var.environment}] Stream Analytics more than ${var.function_requests_threshold_critical} failed function requests on {{name}}" message = "${var.message}" query = < ${var.function_requests_threshold_critical} EOF type = "query alert" notify_no_data = "${var.notify_no_data}" evaluation_delay = "${var.delay}" renotify_interval = 60 notify_audit = false timeout_h = 0 include_tags = true locked = false require_full_window = true new_host_delay = "${var.delay}" no_data_timeframe = 20 thresholds { warning = "${var.function_requests_threshold_warning}" critical = "${var.function_requests_threshold_critical}" } tags = ["env:${var.environment}","resource:${var.service}","team:${var.provider}"] } resource "datadog_monitor" "conversion_errors" { name = "[${var.environment}] Stream Analytics more than ${var.conversion_errors_threshold_critical} conversion errors on {{name}}" # Hard Coded Message while we don't know how to configure warning and critical thresholds message = "@FR-CloudPublic-run@fr.clara.net" query = < ${var.conversion_errors_threshold_critical} EOF type = "query alert" notify_no_data = "${var.notify_no_data}" evaluation_delay = "${var.delay}" renotify_interval = 60 notify_audit = false timeout_h = 0 include_tags = true locked = false require_full_window = true new_host_delay = "${var.delay}" no_data_timeframe = 20 thresholds { warning = "${var.conversion_errors_threshold_warning}" critical = "${var.conversion_errors_threshold_critical}" } tags = ["env:${var.environment}","resource:${var.service}","team:${var.provider}"] } resource "datadog_monitor" "runtime_errors" { name = "[${var.environment}] Stream Analytics more than ${var.runtime_errors_threshold_critical} runtime errors on {{name}}" # Hard Coded Message while we don't know how to configure warning and critical thresholds message = "@FR-CloudPublic-run@fr.clara.net" query = < ${var.runtime_errors_threshold_critical} EOF type = "query alert" notify_no_data = "${var.notify_no_data}" evaluation_delay = "${var.delay}" renotify_interval = 60 notify_audit = false timeout_h = 0 include_tags = true locked = false require_full_window = true new_host_delay = "${var.delay}" no_data_timeframe = 20 thresholds { warning = "${var.runtime_errors_threshold_warning}" critical = "${var.runtime_errors_threshold_critical}" } tags = ["env:${var.environment}","resource:${var.service}","team:${var.provider}"] }