forked from kabisa/terraform-datadog-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
packets-in-errors-variables.tf
53 lines (43 loc) · 1.03 KB
/
packets-in-errors-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
variable "packets_in_errors_enabled" {
type = bool
default = true
}
variable "packets_in_errors_warning" {
type = number
default = 0.5
# 0.5%
}
variable "packets_in_errors_critical" {
type = number
default = 1
# 1%
}
variable "packets_in_errors_evaluation_period" {
type = string
default = "last_15m"
}
variable "packets_in_errors_note" {
type = string
default = ""
}
variable "packets_in_errors_docs" {
type = string
default = "Packet errors can severely degrade network performance. A good article about it is found here: https://netcraftsmen.com/understanding-interface-errors-and-tcp-performance/"
}
variable "packets_in_errors_filter_override" {
type = string
default = ""
}
variable "packets_in_errors_alerting_enabled" {
type = bool
default = true
}
variable "packets_in_errors_priority" {
description = "Number from 1 (high) to 5 (low)."
type = number
default = 3
}
variable "packets_in_errors_notification_channel_override" {
type = string
default = ""
}