-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathinputs.tf
More file actions
45 lines (35 loc) · 1.39 KB
/
inputs.tf
File metadata and controls
45 lines (35 loc) · 1.39 KB
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
variable "service_name" {
description = "Name of the service being monitored"
}
variable "responsible_team" {
description = "The ID of the team that owns this service"
}
variable "successful_operations_sli_count_query" {
description = "The stream query for the monitored service's count of successful operations"
}
variable "total_operations_sli_count_query" {
description = "The stream query for the monitored service's count of total operations (including failures, errors, etc)"
}
variable "error_operations_sli_count_query" {
description = "The stream query for the monitored service's count of total errors"
}
variable "operation_time_sli_query" {
description = "The stream query for the monitored service's operation duration"
}
variable "operation_time_sli_unit" {
description = "Unit type (Millisecond, etc) for the time SLI query"
}
variable "operation_time_slo_target" {
description = "A constant value representing the desired (SLO) duration target"
}
variable "operation_time_slo_duration" {
description = "How long to wait before notifying about operation time SLO violation"
default = "1m"
}
variable "operation_success_ratio_slo_target" {
description = "A constant value representing the desired (SLO) success ratio"
}
variable "operation_success_ratio_slo_duration" {
description = "How long to wait before notifying about success ratio SLO violation"
default = "1m"
}