MON-514 Replace avg with min on fetch latency monitoring

This commit is contained in:
Ignacio Rivas Mendez 2019-10-10 12:54:30 +02:00
parent 670ae6553e
commit 88ba2c6b6a
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ Creates DataDog monitors with the following checks:
| fetch\_latency\_message | Custom message for the Cluster Status monitor | string | `""` | no |
| fetch\_latency\_threshold\_critical | Cluster Status critical threshold | string | `"4"` | no |
| fetch\_latency\_threshold\_warning | Cluster Status warning threshold | string | `"2"` | no |
| fetch\_latency\_time\_aggregator | Time aggregator for the Cluster Status monitor | string | `"avg"` | no |
| fetch\_latency\_time\_aggregator | Time aggregator for the Cluster Status monitor | string | `"min"` | no |
| fetch\_latency\_timeframe | Timeframe for the Cluster Status monitor | string | `"last_10m"` | no |
| field\_data\_evictions\_change\_enabled | Flag to enable Cluster Status monitor | string | `"true"` | no |
| field\_data\_evictions\_change\_extra\_tags | Extra tags for Cluster Status monitor | list(string) | `[]` | no |

View File

@ -724,7 +724,7 @@ variable "fetch_latency_message" {
variable "fetch_latency_time_aggregator" {
description = "Time aggregator for the Cluster Status monitor"
type = string
default = "avg"
default = "min"
}
variable "fetch_latency_timeframe" {