MON-78: Changed host.identifier for name to identify the streamanalytics obkect with issues

This commit is contained in:
Jérémy NANCEL 2017-10-30 14:18:15 +01:00 committed by Jérôme Respaut
parent 17fa260daf
commit 34ef735a07

View File

@ -1,5 +1,5 @@
resource "datadog_monitor" "SU_utilization" {
name = "[${var.environment} SU utilization at more than ${var.su_utilization_critical}% on {{host.identifier}}]"
name = "[${var.environment}] SU utilization at more than ${var.su_utilization_critical}% on {{name}}"
message = "{{#is_alert}}\n${var.hno_escalation_group} \n{{/is_alert}} \n{{#is_recovery}}\n${var.hno_escalation_group}\n{{/is_recovery}}"
query = "avg(last_5m):avg:azure.streamanalytics_streamingjobs.resource_utilization{*} by {name,resource_group} > ${var.su_utilization_critical}"
@ -22,7 +22,7 @@ resource "datadog_monitor" "SU_utilization" {
}
resource "datadog_monitor" "failed_function_requests" {
name = "[${var.environment} More than ${var.failed_function_requests_critical} failed function requests on {{host.identifier}}]"
name = "[${var.environment}] More than ${var.failed_function_requests_critical} failed function requests on {{name}}"
message = "{{#is_alert}}\n${var.hno_escalation_group} \n{{/is_alert}} \n{{#is_recovery}}\n${var.hno_escalation_group}\n{{/is_recovery}}"
query = "avg(last_5m):avg:azure.streamanalytics_streamingjobs.aml_callout_failed_requests{*} by {name,resource_group} > ${var.failed_function_requests_critical}"
@ -45,7 +45,7 @@ resource "datadog_monitor" "failed_function_requests" {
}
resource "datadog_monitor" "conversion_errors" {
name = "[${var.environment} More than ${var.conversion_errors_critical} conversion errors on {{host.identifier}}]"
name = "[${var.environment}] More than ${var.conversion_errors_critical} conversion errors on {{name}}"
message = "{{#is_alert}}\n${var.hno_escalation_group} \n{{/is_alert}} \n{{#is_recovery}}\n${var.hno_escalation_group}\n{{/is_recovery}}"
query = "avg(last_5m):avg:azure.streamanalytics_streamingjobs.conversion_errors{*} by {name,resource_group} > ${var.conversion_errors_critical}"
@ -68,7 +68,7 @@ resource "datadog_monitor" "conversion_errors" {
}
resource "datadog_monitor" "runtime_errors" {
name = "[${var.environment} More than ${var.runtime_errors_critical} runtime errors on {{host.identifier}}]"
name = "[${var.environment}] More than ${var.runtime_errors_critical} runtime errors on {{name}}"
message = "{{#is_alert}}\n${var.hno_escalation_group} \n{{/is_alert}} \n{{#is_recovery}}\n${var.hno_escalation_group}\n{{/is_recovery}}"
query = "avg(last_5m):avg:azure.streamanalytics_streamingjobs.errors{*} by {name,resource_group} > ${var.runtime_errors_critical}"
@ -89,4 +89,3 @@ resource "datadog_monitor" "runtime_errors" {
critical = "${var.runtime_errors_critical}"
}
}