MON-523 Fix Azure server farm status aggregator

This commit is contained in:
Laurent Piroelle 2019-10-28 10:58:36 +01:00
parent 46982e2dc0
commit ab1322451a
2 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ Creates DataDog monitors with the following checks:
| status\_enabled | Flag to enable the serverfarms status monitor | string | `"true"` | no | | status\_enabled | Flag to enable the serverfarms status monitor | string | `"true"` | no |
| status\_extra\_tags | Extra tags for serverfarms status monitor | list(string) | `[]` | no | | status\_extra\_tags | Extra tags for serverfarms status monitor | list(string) | `[]` | no |
| status\_message | Custom message for serverfarm status monitor | string | `""` | no | | status\_message | Custom message for serverfarm status monitor | string | `""` | no |
| status\_time\_aggregator | Monitor aggregator for serverfarms status [available values: min, max or avg] | string | `"min"` | no | | status\_time\_aggregator | Monitor aggregator for serverfarms status [available values: min, max or avg] | string | `"max"` | no |
| status\_timeframe | Monitor timeframe for serverfarms status [available values: `last_#m` (1, 5, 10, 15, or 30), `last_#h` (1, 2, or 4), or `last_1d`] | string | `"last_5m"` | no | | status\_timeframe | Monitor timeframe for serverfarms status [available values: `last_#m` (1, 5, 10, 15, or 30), `last_#h` (1, 2, or 4), or `last_1d`] | string | `"last_5m"` | no |
## Outputs ## Outputs

View File

@ -58,7 +58,7 @@ variable "status_extra_tags" {
variable "status_time_aggregator" { variable "status_time_aggregator" {
description = "Monitor aggregator for serverfarms status [available values: min, max or avg]" description = "Monitor aggregator for serverfarms status [available values: min, max or avg]"
type = string type = string
default = "min" default = "max"
} }
variable "status_timeframe" { variable "status_timeframe" {