From 57e4ba8c025912bc942e7560807d244e7e79edae Mon Sep 17 00:00:00 2001 From: Gauthier Ampe Date: Tue, 24 Mar 2020 17:42:12 +0100 Subject: [PATCH] MON-571 Apply suggestion to cloud/azure/app-gateway/monitors-app-gateway.tf --- cloud/azure/app-gateway/README.md | 2 +- cloud/azure/app-gateway/monitors-app-gateway.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cloud/azure/app-gateway/README.md b/cloud/azure/app-gateway/README.md index 7b83167..958bc9c 100644 --- a/cloud/azure/app-gateway/README.md +++ b/cloud/azure/app-gateway/README.md @@ -22,7 +22,7 @@ Creates DataDog monitors with the following checks: - App Gateway backend HTTP 5xx errors rate is too high - App Gateway backend unhealthy host ratio is too high - App Gateway failed requests -- App Gateway has no successful requests +- App Gateway has no requests - App Gateway HTTP 4xx errors rate is too high - App Gateway HTTP 5xx errors rate is too high - App Gateway is down diff --git a/cloud/azure/app-gateway/monitors-app-gateway.tf b/cloud/azure/app-gateway/monitors-app-gateway.tf index efb0fb3..e4d9236 100644 --- a/cloud/azure/app-gateway/monitors-app-gateway.tf +++ b/cloud/azure/app-gateway/monitors-app-gateway.tf @@ -32,7 +32,7 @@ EOQ # Monitoring App Gateway total_requests resource "datadog_monitor" "total_requests" { count = var.total_requests_enabled == "true" ? 1 : 0 - name = "${var.prefix_slug == "" ? "" : "[${var.prefix_slug}]"}[${var.environment}] App Gateway has no successful requests" + name = "${var.prefix_slug == "" ? "" : "[${var.prefix_slug}]"}[${var.environment}] App Gateway has no requests" message = coalesce(var.total_requests_message, var.message) type = "query alert"