MON-271 change hitrate time aggregator to max to make it more tolerant

This commit is contained in:
Quentin Manfroi 2018-08-13 10:56:09 +02:00
parent 9a35aee91c
commit b63d9b12b4
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ Creates DataDog monitors with the following checks:
| hitrate_silenced | Groups to mute for Redis hitrate monitor | map | `<map>` | no |
| hitrate_threshold_critical | hitrate limit (critical threshold) | string | `10` | no |
| hitrate_threshold_warning | hitrate limit (warning threshold) | string | `30` | no |
| hitrate_time_aggregator | Monitor aggregator for Redis hitrate [available values: min, max or avg] | string | `min` | no |
| hitrate_time_aggregator | Monitor aggregator for Redis hitrate [available values: min, max or avg] | string | `max` | no |
| hitrate_timeframe | Monitor timeframe for Redis hitrate [available values: `last_#m` (1, 5, 10, 15, or 30), `last_#h` (1, 2, or 4), or `last_1d`] | string | `last_5m` | no |
| keyspace_message | Custom message for Redis keyspace monitor | string | `` | no |
| keyspace_silenced | Groups to mute for Redis keyspace monitor | map | `<map>` | no |

View File

@ -321,7 +321,7 @@ variable "hitrate_message" {
variable "hitrate_time_aggregator" {
description = "Monitor aggregator for Redis hitrate [available values: min, max or avg]"
type = "string"
default = "min"
default = "max"
}
variable "hitrate_timeframe" {