Merge branch 'MON-480-Increase_alert_tresholds_for_stream_analytics_su_utilization' into 'master'

MON-480:  "Increase alert tresholds for stream analytics su utilization"

Closes MON-480

See merge request claranet/pt-monitoring/projects/datadog/terraform/monitors!73
This commit is contained in:
Quentin Manfroi 2019-07-31 16:40:48 +02:00
commit a867b7c5f2
2 changed files with 4 additions and 4 deletions

View File

@ -63,8 +63,8 @@ Creates DataDog monitors with the following checks:
| su\_utilization\_enabled | Flag to enable Stream Analytics utilization monitor | string | `"true"` | no |
| su\_utilization\_extra\_tags | Extra tags for Stream Analytics utilization monitor | list(string) | `[]` | no |
| su\_utilization\_message | Custom message for Stream Analytics utilization monitor | string | `""` | no |
| su\_utilization\_threshold\_critical | Streaming Unit utilization rate limit (critical threshold) | string | `"80"` | no |
| su\_utilization\_threshold\_warning | Streaming Unit utilization rate limit (warning threshold) | string | `"60"` | no |
| su\_utilization\_threshold\_critical | Streaming Unit utilization rate limit (critical threshold) | string | `"95"` | no |
| su\_utilization\_threshold\_warning | Streaming Unit utilization rate limit (warning threshold) | string | `"80"` | no |
| su\_utilization\_time\_aggregator | Monitor aggregator for Stream Analytics utilization [available values: min, max or avg] | string | `"min"` | no |
| su\_utilization\_timeframe | Monitor timeframe for Stream Analytics utilization [available values: `last_#m` (1, 5, 10, 15, or 30), `last_#h` (1, 2, or 4), or `last_1d`] | string | `"last_5m"` | no |

View File

@ -103,12 +103,12 @@ variable "su_utilization_timeframe" {
variable "su_utilization_threshold_warning" {
description = "Streaming Unit utilization rate limit (warning threshold)"
default = 60
default = 80
}
variable "su_utilization_threshold_critical" {
description = "Streaming Unit utilization rate limit (critical threshold)"
default = 80
default = 95
}
variable "failed_function_requests_enabled" {