diff --git a/cloud/azure/mysql/README.md b/cloud/azure/mysql/README.md index c1ec5be..4927f8d 100644 --- a/cloud/azure/mysql/README.md +++ b/cloud/azure/mysql/README.md @@ -16,7 +16,6 @@ module "datadog-monitors-cloud-azure-mysql" { Creates DataDog monitors with the following checks: -- Mysql Server compute consumption - Mysql Server CPU usage - Mysql Server has no connection - Mysql Server IO consumption @@ -84,7 +83,6 @@ Creates DataDog monitors with the following checks: | Name | Description | |------|-------------| -| mysql_compute_consumption_id | id for monitor mysql_compute_consumption | | mysql_cpu_usage_id | id for monitor mysql_cpu_usage | | mysql_free_storage_id | id for monitor mysql_free_storage | | mysql_io_consumption_id | id for monitor mysql_io_consumption | diff --git a/cloud/azure/mysql/outputs.tf b/cloud/azure/mysql/outputs.tf index b064939..f037a3f 100644 --- a/cloud/azure/mysql/outputs.tf +++ b/cloud/azure/mysql/outputs.tf @@ -18,11 +18,6 @@ output "mysql_io_consumption_id" { value = "${datadog_monitor.mysql_io_consumption.*.id}" } -output "mysql_compute_consumption_id" { - description = "id for monitor mysql_compute_consumption" - value = "${datadog_monitor.mysql_compute_consumption.*.id}" -} - output "mysql_memory_usage_id" { description = "id for monitor mysql_memory_usage" value = "${datadog_monitor.mysql_memory_usage.*.id}" diff --git a/cloud/azure/postgresql/README.md b/cloud/azure/postgresql/README.md index f7942a4..0b96275 100644 --- a/cloud/azure/postgresql/README.md +++ b/cloud/azure/postgresql/README.md @@ -16,7 +16,6 @@ module "datadog-monitors-cloud-azure-postgresql" { Creates DataDog monitors with the following checks: -- Postgresql Server compute consumption - Postgresql Server CPU usage - Postgresql Server has no connection - Postgresql Server IO consumption @@ -84,7 +83,6 @@ Creates DataDog monitors with the following checks: | Name | Description | |------|-------------| -| postgresql_compute_consumption_id | id for monitor postgresql_compute_consumption | | postgresql_cpu_usage_id | id for monitor postgresql_cpu_usage | | postgresql_free_storage_id | id for monitor postgresql_free_storage | | postgresql_io_consumption_id | id for monitor postgresql_io_consumption | diff --git a/cloud/azure/postgresql/outputs.tf b/cloud/azure/postgresql/outputs.tf index b1eeb0a..52b8398 100644 --- a/cloud/azure/postgresql/outputs.tf +++ b/cloud/azure/postgresql/outputs.tf @@ -22,8 +22,3 @@ output "postgresql_memory_usage_id" { description = "id for monitor postgresql_memory_usage" value = "${datadog_monitor.postgresql_memory_usage.*.id}" } - -output "postgresql_compute_consumption_id" { - description = "id for monitor postgresql_compute_consumption" - value = "${datadog_monitor.postgresql_compute_consumption.*.id}" -}