Merge branch 'MON-509-name-correction-Azure-storage-monitors' into 'master'
Resolve MON-509 "Name correction azure storage monitors" Closes MON-509 See merge request claranet/pt-monitoring/projects/datadog/terraform/monitors!120
This commit is contained in:
commit
793d34e627
@ -26,11 +26,13 @@ Creates DataDog monitors with the following checks:
|
||||
- Azure File Storage too many client_other errors
|
||||
- Azure File Storage too many network errors
|
||||
- Azure File Storage too many server_other errors
|
||||
- Azure File Storage too many throttling errors
|
||||
- Azure File Storage too many timeout errors
|
||||
- Azure Queue Storage too many authorization errors
|
||||
- Azure Queue Storage too many client_other errors
|
||||
- Azure Queue Storage too many network errors
|
||||
- Azure Queue Storage too many server_other errors
|
||||
- Azure Queue Storage too many throttling errors
|
||||
- Azure Queue Storage too many timeout errors
|
||||
- Azure Storage Blob service too few successful requests
|
||||
- Azure Storage Blob service too high end to end latency
|
||||
@ -41,13 +43,11 @@ Creates DataDog monitors with the following checks:
|
||||
- Azure Storage Queue service too high end to end latency
|
||||
- Azure Storage Table service too few successful requests
|
||||
- Azure Storage Table service too high end to end latency
|
||||
- Azure Storage too many throttling errors
|
||||
- Azure Storage too many throttling errors
|
||||
- Azure Storage too many throttling errors
|
||||
- Azure Table Storage too many authorization errors
|
||||
- Azure Table Storage too many client_other errors
|
||||
- Azure Table Storage too many network errors
|
||||
- Azure Table Storage too many server_other errors
|
||||
- Azure Table Storage too many throttling errors
|
||||
- Azure Table Storage too many timeout errors
|
||||
|
||||
## Inputs
|
||||
|
||||
@ -673,7 +673,7 @@ EOQ
|
||||
|
||||
resource "datadog_monitor" "file_throttling_error_requests" {
|
||||
count = var.throttling_error_requests_enabled == "true" ? 1 : 0
|
||||
name = "${var.prefix_slug == "" ? "" : "[${var.prefix_slug}]"}[${var.environment}] Azure Storage too many throttling errors {{#is_alert}}{{{comparator}}} {{threshold}}% ({{value}}%){{/is_alert}}{{#is_warning}}{{{comparator}}} {{warn_threshold}}% ({{value}}%){{/is_warning}}"
|
||||
name = "${var.prefix_slug == "" ? "" : "[${var.prefix_slug}]"}[${var.environment}] Azure File Storage too many throttling errors {{#is_alert}}{{{comparator}}} {{threshold}}% ({{value}}%){{/is_alert}}{{#is_warning}}{{{comparator}}} {{warn_threshold}}% ({{value}}%){{/is_warning}}"
|
||||
message = coalesce(var.throttling_error_requests_message, var.message)
|
||||
|
||||
query = <<EOQ
|
||||
@ -707,7 +707,7 @@ EOQ
|
||||
|
||||
resource "datadog_monitor" "queue_throttling_error_requests" {
|
||||
count = var.throttling_error_requests_enabled == "true" ? 1 : 0
|
||||
name = "${var.prefix_slug == "" ? "" : "[${var.prefix_slug}]"}[${var.environment}] Azure Storage too many throttling errors {{#is_alert}}{{{comparator}}} {{threshold}}% ({{value}}%){{/is_alert}}{{#is_warning}}{{{comparator}}} {{warn_threshold}}% ({{value}}%){{/is_warning}}"
|
||||
name = "${var.prefix_slug == "" ? "" : "[${var.prefix_slug}]"}[${var.environment}] Azure Queue Storage too many throttling errors {{#is_alert}}{{{comparator}}} {{threshold}}% ({{value}}%){{/is_alert}}{{#is_warning}}{{{comparator}}} {{warn_threshold}}% ({{value}}%){{/is_warning}}"
|
||||
message = coalesce(var.throttling_error_requests_message, var.message)
|
||||
|
||||
query = <<EOQ
|
||||
@ -745,7 +745,7 @@ EOQ
|
||||
|
||||
resource "datadog_monitor" "table_throttling_error_requests" {
|
||||
count = var.throttling_error_requests_enabled == "true" ? 1 : 0
|
||||
name = "${var.prefix_slug == "" ? "" : "[${var.prefix_slug}]"}[${var.environment}] Azure Storage too many throttling errors {{#is_alert}}{{{comparator}}} {{threshold}}% ({{value}}%){{/is_alert}}{{#is_warning}}{{{comparator}}} {{warn_threshold}}% ({{value}}%){{/is_warning}}"
|
||||
name = "${var.prefix_slug == "" ? "" : "[${var.prefix_slug}]"}[${var.environment}] Azure Table Storage too many throttling errors {{#is_alert}}{{{comparator}}} {{threshold}}% ({{value}}%){{/is_alert}}{{#is_warning}}{{{comparator}}} {{warn_threshold}}% ({{value}}%){{/is_warning}}"
|
||||
message = coalesce(var.throttling_error_requests_message, var.message)
|
||||
|
||||
query = <<EOQ
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user