-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathnode-memorypressure-variables.tf
57 lines (46 loc) · 1.31 KB
/
node-memorypressure-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
49
50
51
52
53
54
55
56
57
variable "node_memorypressure_enabled" {
type = bool
default = true
}
variable "node_memorypressure_critical" {
type = number
default = 0
description = "alert is raised when (desired - running) > node_memorypressure_critical"
}
variable "node_memorypressure_evaluation_period" {
type = string
default = "last_5m"
}
variable "node_memorypressure_note" {
type = string
default = ""
}
variable "node_memorypressure_docs" {
type = string
default = "Memory pressure is a resourcing condition indicating that your node is running out of memory. Similar to CPU resourcing, you don’t want to run out of memory. You especially need to watch for this condition because it could mean there’s a memory leak in one of your applications."
}
variable "node_memorypressure_filter_override" {
type = string
default = ""
}
variable "node_memorypressure_alerting_enabled" {
type = bool
default = true
}
variable "node_memorypressure_no_data_timeframe" {
type = number
default = null
}
variable "node_memorypressure_notify_no_data" {
type = bool
default = false
}
variable "node_memorypressure_ok_threshold" {
type = number
default = null
}
variable "node_memorypressure_priority" {
description = "Number from 1 (high) to 5 (low)."
type = number
default = 3
}