From 441927d0b3be1957dece077845dd753f0a643d75 Mon Sep 17 00:00:00 2001 From: jnancel Date: Tue, 2 Oct 2018 11:53:43 +0200 Subject: [PATCH] MON-316 Correct some descriptions --- cloud/azure/serverfarms/README.md | 8 ++++---- cloud/azure/serverfarms/inputs.tf | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/cloud/azure/serverfarms/README.md b/cloud/azure/serverfarms/README.md index 4cf7dc7..8b1c02b 100644 --- a/cloud/azure/serverfarms/README.md +++ b/cloud/azure/serverfarms/README.md @@ -25,7 +25,7 @@ Creates DataDog monitors with the following checks: | Name | Description | Type | Default | Required | |------|-------------|:----:|:-----:|:-----:| | cpu_percentage_enabled | Flag to enable the serverfarms cpu_percentage monitor | string | `true` | no | -| cpu_percentage_extra_tags | Extra tags for Redis cpu_percentage monitor | list | `[]` | no | +| cpu_percentage_extra_tags | Extra tags for serverfarms cpu_percentage monitor | list | `[]` | no | | cpu_percentage_message | Custom message for serverfarm cpu_percentage monitor | string | `` | no | | cpu_percentage_silenced | Groups to mute for serverfarm cpu_percentage monitor | map | `{}` | no | | cpu_percentage_threshold_critical | CPU percentage (critical threshold) | string | `95` | no | @@ -37,17 +37,17 @@ Creates DataDog monitors with the following checks: | filter_tags_custom | Tags used for custom filtering when filter_tags_use_defaults is false | string | `*` | no | | filter_tags_use_defaults | Use default filter tags convention | string | `true` | no | | memory_percentage_enabled | Flag to enable the serverfarms memory_percentage monitor | string | `true` | no | -| memory_percentage_extra_tags | Extra tags for Redis memory_percentage monitor | list | `[]` | no | +| memory_percentage_extra_tags | Extra tags for serverfarms memory_percentage monitor | list | `[]` | no | | memory_percentage_message | Custom message for serverfarm memory_percentage monitor | string | `` | no | | memory_percentage_silenced | Groups to mute for serverfarm memory_percentage monitor | map | `{}` | no | | memory_percentage_threshold_critical | Memory percentage (critical threshold) | string | `95` | no | | memory_percentage_threshold_warning | Memory percentage (warning threshold) | string | `90` | no | | memory_percentage_time_aggregator | Monitor aggregator for serverfarms memory_percentage [available values: min, max or avg] | string | `max` | no | | memory_percentage_timeframe | Monitor timeframe for serverfarms memory_percentage [available values: `last_#m` (1, 5, 10, 15, or 30), `last_#h` (1, 2, or 4), or `last_1d`] | string | `last_5m` | no | -| message | Message sent when a Redis monitor is triggered | string | - | yes | +| message | Message sent when a serverfarms monitor is triggered | string | - | yes | | new_host_delay | Delay in seconds before monitor new resource | string | `300` | no | | status_enabled | Flag to enable the serverfarms status monitor | string | `true` | no | -| status_extra_tags | Extra tags for Redis status monitor | list | `[]` | no | +| status_extra_tags | Extra tags for serverfarms status monitor | list | `[]` | no | | status_message | Custom message for serverfarm status monitor | string | `` | no | | status_silenced | Groups to mute for serverfarm status monitor | map | `{}` | no | | status_time_aggregator | Monitor aggregator for serverfarms status [available values: min, max or avg] | string | `max` | no | diff --git a/cloud/azure/serverfarms/inputs.tf b/cloud/azure/serverfarms/inputs.tf index f096b72..968751d 100644 --- a/cloud/azure/serverfarms/inputs.tf +++ b/cloud/azure/serverfarms/inputs.tf @@ -6,7 +6,7 @@ variable "environment" { # Global DataDog variable "message" { - description = "Message sent when a Redis monitor is triggered" + description = "Message sent when a serverfarms monitor is triggered" } variable "evaluation_delay" { @@ -51,7 +51,7 @@ variable "status_silenced" { } variable "status_extra_tags" { - description = "Extra tags for Redis status monitor" + description = "Extra tags for serverfarms status monitor" type = "list" default = [] } @@ -88,7 +88,7 @@ variable "cpu_percentage_silenced" { } variable "cpu_percentage_extra_tags" { - description = "Extra tags for Redis cpu_percentage monitor" + description = "Extra tags for serverfarms cpu_percentage monitor" type = "list" default = [] } @@ -135,7 +135,7 @@ variable "memory_percentage_silenced" { } variable "memory_percentage_extra_tags" { - description = "Extra tags for Redis memory_percentage monitor" + description = "Extra tags for serverfarms memory_percentage monitor" type = "list" default = [] }