-
Notifications
You must be signed in to change notification settings - Fork 1
/
under_replicated_partitions-variables.tf
55 lines (44 loc) · 1.29 KB
/
under_replicated_partitions-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
variable "under_replicated_partitions_enabled" {
type = bool
default = true
}
variable "under_replicated_partitions_warning" {
type = number
default = 100
}
variable "under_replicated_partitions_critical" {
type = number
default = 0
}
variable "under_replicated_partitions_evaluation_period" {
type = string
default = "last_15m"
}
variable "under_replicated_partitions_note" {
type = string
default = ""
}
variable "under_replicated_partitions_docs" {
type = string
default = <<EOFF
If a broker becomes unavailable, the value of UnderReplicatedPartitions will increase sharply. Since Kafka’s high-availability guarantees cannot be met without replication, investigation is certainly warranted should this metric value exceed zero for extended time periods.
https://www.datadoghq.com/blog/monitoring-kafka-performance-metrics/
EOFF
}
variable "under_replicated_partitions_filter_override" {
type = string
default = ""
}
variable "under_replicated_partitions_alerting_enabled" {
type = bool
default = true
}
variable "under_replicated_partitions_require_full_window" {
type = bool
default = true
}
variable "under_replicated_partitions_priority" {
description = "Number from 1 (high) to 5 (low)."
type = number
default = 3
}