From 0d20764e7844085a0f74627ab85adcfb0c846703 Mon Sep 17 00:00:00 2001 From: Rafael Romero Carmona Date: Fri, 24 Aug 2018 17:44:54 +0200 Subject: [PATCH] MON-226 Descriptions fixed --- cloud/gcp/pubsub/README.md | 6 +++--- cloud/gcp/pubsub/inputs.tf | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/cloud/gcp/pubsub/README.md b/cloud/gcp/pubsub/README.md index 2e49ece..3ca819c 100644 --- a/cloud/gcp/pubsub/README.md +++ b/cloud/gcp/pubsub/README.md @@ -31,14 +31,14 @@ Creates DataDog monitors with the following checks: | sending_operations_count_extra_tags | Extra tags for GCP Pub/Sub Sending Operations Count monitor | list | `` | no | | sending_operations_count_message | Custom message for the GCP Pub/Sub Sending Operations Count monitor | string | `` | no | | sending_operations_count_silenced | Groups to mute for GCP Pub/Sub Sending Operations Count monitor | map | `` | no | -| sending_operations_count_threshold_critical | Critical threshold | string | `0` | no | +| sending_operations_count_threshold_critical | Critical threshold for the number of sending operations. | string | `0` | no | | sending_operations_count_time_aggregator | Timeframe for the GCP Pub/Sub Sending Operations Count monitor | string | `sum` | no | | sending_operations_count_timeframe | Timeframe for the GCP Pub/Sub Sending Operations Count monitor | string | `last_30m` | no | | unavailable_sending_operations_count_extra_tags | Extra tags for GCP Pub/Sub Unavailable Sending Operations Count monitor | list | `` | no | | unavailable_sending_operations_count_message | Custom message for the GCP Pub/Sub Unavailable Sending Operations Count monitor | string | `` | no | | unavailable_sending_operations_count_silenced | Groups to mute for GCP Pub/Sub Unavailable Sending Operations Count monitor | map | `` | no | -| unavailable_sending_operations_count_threshold_critical | Critical threshold | string | `4` | no | -| unavailable_sending_operations_count_threshold_warning | Warning threshold | string | `2` | no | +| unavailable_sending_operations_count_threshold_critical | Critical threshold for the number of unavailable sending operations | string | `4` | no | +| unavailable_sending_operations_count_threshold_warning | Warning threshold for the number of unavailable sending operations | string | `2` | no | | unavailable_sending_operations_count_time_aggregator | Timeframe for the GCP Pub/Sub Unavailable Sending Operations Count monitor | string | `sum` | no | | unavailable_sending_operations_count_timeframe | Timeframe for the GCP Pub/Sub Unavailable Sending Operations Count monitor | string | `last_10m` | no | diff --git a/cloud/gcp/pubsub/inputs.tf b/cloud/gcp/pubsub/inputs.tf index 626a596..eb86ff4 100644 --- a/cloud/gcp/pubsub/inputs.tf +++ b/cloud/gcp/pubsub/inputs.tf @@ -47,7 +47,7 @@ variable "sending_operations_count_timeframe" { } variable "sending_operations_count_threshold_critical" { - description = "Critical threshold" + description = "Critical threshold for the number of sending operations." type = "string" default = 0 } @@ -86,13 +86,13 @@ variable "unavailable_sending_operations_count_timeframe" { } variable "unavailable_sending_operations_count_threshold_warning" { - description = "Warning threshold" + description = "Warning threshold for the number of unavailable sending operations" type = "string" default = 2 } variable "unavailable_sending_operations_count_threshold_critical" { - description = "Critical threshold" + description = "Critical threshold for the number of unavailable sending operations" type = "string" default = 4 }