generated from kabisa/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apdex-variables.tf
48 lines (39 loc) · 988 Bytes
/
apdex-variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
variable "apdex_enabled" {
type = bool
default = false
}
variable "apdex_warning" {
type = number
default = 0.9
}
variable "apdex_critical" {
type = number
default = 0.8
}
variable "apdex_evaluation_period" {
type = string
default = "last_10m"
}
variable "apdex_note" {
type = string
default = ""
}
variable "apdex_docs" {
type = string
default = <<-EOT
Apdex is a measure of response time based against a set threshold. It measures the ratio of satisfactory response times to unsatisfactory response times. The response time is measured from an asset request to completed delivery back to the requestor. For more see: https://en.wikipedia.org/wiki/Apdex#Apdex_method
EOT
}
variable "apdex_filter_override" {
type = string
default = ""
}
variable "apdex_alerting_enabled" {
type = bool
default = true
}
variable "apdex_priority" {
description = "Number from 1 (high) to 5 (low)."
type = number
default = 3
}