diff --git a/cloud/azure/README.md b/cloud/azure/README.md index 2b5ca45..e481eab 100644 --- a/cloud/azure/README.md +++ b/cloud/azure/README.md @@ -104,8 +104,8 @@ Inputs | storage_network_error_requests_threshold_warning | Warning regarding acceptable percent of network error requests for a storage | string | `5` | no | | storage_server_other_error_requests_threshold_critical | Maximum acceptable percent of server other error requests for a storage | string | `50` | no | | storage_server_other_error_requests_threshold_warning | Warning regarding acceptable percent of server other error requests for a storage | string | `10` | no | -| storage_successful_requests_threshold_critical | Minimum acceptable percent of successful requests for a storage | string | `50` | no | -| storage_successful_requests_threshold_warning | Warning regarding acceptable percent of successful requests for a storage | string | `90` | no | +| storage_successful_requests_threshold_critical | Minimum acceptable percent of successful requests for a storage | string | `10` | no | +| storage_successful_requests_threshold_warning | Warning regarding acceptable percent of successful requests for a storage | string | `30` | no | | storage_throttling_error_requests_threshold_critical | Maximum acceptable percent of throttling error requests for a storage | string | `50` | no | | storage_throttling_error_requests_threshold_warning | Warning regarding acceptable percent of throttling error requests for a storage | string | `10` | no | | storage_timeout_error_requests_threshold_critical | Maximum acceptable percent of timeout error requests for a storage | string | `50` | no | diff --git a/cloud/azure/inputs.tf b/cloud/azure/inputs.tf index 941aa5a..0736061 100644 --- a/cloud/azure/inputs.tf +++ b/cloud/azure/inputs.tf @@ -322,12 +322,12 @@ variable "storage_availability_threshold_warning" { variable "storage_successful_requests_threshold_critical" { description = "Minimum acceptable percent of successful requests for a storage" - default = 50 + default = 10 } variable "storage_successful_requests_threshold_warning" { description = "Warning regarding acceptable percent of successful requests for a storage" - default = 90 + default = 30 } variable "storage_latency_threshold_critical" { diff --git a/cloud/azure/storage/README.md b/cloud/azure/storage/README.md index e5a93f6..6933ef1 100644 --- a/cloud/azure/storage/README.md +++ b/cloud/azure/storage/README.md @@ -49,8 +49,8 @@ Inputs | network_error_requests_threshold_warning | Warning regarding acceptable percent of network error requests for a storage | string | `5` | no | | server_other_error_requests_threshold_critical | Maximum acceptable percent of server other error requests for a storage | string | `50` | no | | server_other_error_requests_threshold_warning | Warning regarding acceptable percent of server other error requests for a storage | string | `10` | no | -| successful_requests_threshold_critical | Minimum acceptable percent of successful requests for a storage | string | `50` | no | -| successful_requests_threshold_warning | Warning regarding acceptable percent of successful requests for a storage | string | `90` | no | +| successful_requests_threshold_critical | Minimum acceptable percent of successful requests for a storage | string | `10` | no | +| successful_requests_threshold_warning | Warning regarding acceptable percent of successful requests for a storage | string | `30` | no | | throttling_error_requests_threshold_critical | Maximum acceptable percent of throttling error requests for a storage | string | `50` | no | | throttling_error_requests_threshold_warning | Warning regarding acceptable percent of throttling error requests for a storage | string | `10` | no | | timeout_error_requests_threshold_critical | Maximum acceptable percent of timeout error requests for a storage | string | `50` | no | diff --git a/cloud/azure/storage/inputs.tf b/cloud/azure/storage/inputs.tf index d210ca7..76a52a2 100644 --- a/cloud/azure/storage/inputs.tf +++ b/cloud/azure/storage/inputs.tf @@ -37,12 +37,12 @@ variable "availability_threshold_warning" { variable "successful_requests_threshold_critical" { description = "Minimum acceptable percent of successful requests for a storage" - default = 50 + default = 10 } variable "successful_requests_threshold_warning" { description = "Warning regarding acceptable percent of successful requests for a storage" - default = 90 + default = 30 } variable "latency_threshold_critical" {