diff --git a/cloud/azure/storage/README.md b/cloud/azure/storage/README.md index 1f4c360..7a97fef 100644 --- a/cloud/azure/storage/README.md +++ b/cloud/azure/storage/README.md @@ -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 diff --git a/cloud/azure/storage/monitors-azure-storage.tf b/cloud/azure/storage/monitors-azure-storage.tf index 7ad7afc..22c255a 100644 --- a/cloud/azure/storage/monitors-azure-storage.tf +++ b/cloud/azure/storage/monitors-azure-storage.tf @@ -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 = <