Merged in MON-307-gcp-cloudsql-failover-monitor-in (pull request #162)

MON-307 increase default timeframe for failover monitor

Approved-by: Quentin Manfroi <quentin.manfroi@yahoo.fr>
Approved-by: Alexandre Gaillet <alexandre.gaillet@fr.clara.net>
Approved-by: Rafael Romero Carmona <rafael.romero.carmona@fr.clara.net>
This commit is contained in:
Quentin Manfroi 2018-09-27 08:27:22 +00:00
commit d4a16a5031
2 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ Creates DataDog monitors with the following checks:
| failover_unavailable_silenced | Groups to mute for GCP Cloud SQL Failover Unavailable monitor | map | `{}` | no |
| failover_unavailable_threshold_critical | Failover Unavailable critical threshold | string | `0` | no |
| failover_unavailable_time_aggregator | Time aggreggator for the Failover Unavailable monitor | string | `max` | no |
| failover_unavailable_timeframe | Timeframe for the Failover Unavailable monitor | string | `last_5m` | no |
| failover_unavailable_timeframe | Timeframe for the Failover Unavailable monitor | string | `last_10m` | no |
| filter_tags | Tags used for filtering | string | `*` | no |
| memory_utilization_enabled | Flag to enable GCP Cloud SQL Memory Utilization monitor | string | `true` | no |
| memory_utilization_extra_tags | Extra tags for GCP Cloud SQL Memory Utilization monitor | list | `[]` | no |

View File

@ -366,7 +366,7 @@ variable "failover_unavailable_time_aggregator" {
variable "failover_unavailable_timeframe" {
description = "Timeframe for the Failover Unavailable monitor"
type = "string"
default = "last_5m"
default = "last_10m"
}
variable "failover_unavailable_threshold_critical" {