-
Notifications
You must be signed in to change notification settings - Fork 53
/
config.hcl
144 lines (126 loc) · 3.41 KB
/
config.hcl
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# Define "prod" Prometheus instance that will only be used for
# rules defined in file matching "alerting/prod/.+" or "recording/prod/.+".
prometheus "prod" {
uri = "https://prod.example.com"
failover = [ "https://prod-backup.example.com" ]
headers = {
"X-Auth": "secret",
"X-User": "bob"
}
timeout = "30s"
include = [
"alerting/prod/.+",
"recording/prod/.+",
]
exclude = [
"alerting/prod/.+.txt",
]
}
# Define "dev" Prometheus instance that will be use for all rule checks.
prometheus "dev" {
uri = "https://dev.example.com"
timeout = "60s"
}
# Disable smelly selectors warning in promql/regexp check.
check "promql/regexp" {
smelly = false
}
rule {
# Disallow spaces in label/annotation keys, they're only allowed in values.
reject ".* +.*" {
label_keys = true
annotation_keys = true
}
# Disallow URLs in labels, they should go to annotations.
reject "https?://.+" {
label_keys = true
label_values = true
}
}
rule {
# This block will apply to all alerting rules.
match {
kind = "alerting"
}
# Each alert must have a 'summary' annotation on every alert.
annotation "summary" {
severity = "bug"
required = true
}
# Each alert must have a 'dashboard' annotation that links to grafana.
annotation "dashboard" {
severity = "bug"
value = "https://grafana.example.com/(.+)"
}
# Each alert must have a 'severity' annotation that's either 'critical' or 'warning'.
label "severity" {
severity = "bug"
value = "(critical|warning)"
required = true
}
# Check how many times each alert would fire in the last 1d.
alerts {
range = "1d"
step = "1m"
resolve = "5m"
}
# Validate all links to ensure they point to pages that do exist.
link "https?://(.+)" {
severity = "warning"
timeout = "30s"
# Pass custom headers to all requests
headers = {
# Read X-Auth value from environment variable AUTH_KEY
X-Auth = "${ENV_AUTH_KEY}"
}
}
}
rule {
# This block will apply to all alerting rules with severity="critical" label set.
match {
kind = "alerting"
label "severity" {
value = "critical"
}
}
# All severity="critical" alerts must have a runbook link as annotation.
annotation "runbook" {
severity = "bug"
value = "https://runbook.example.com/.+"
required = true
}
}
rule {
# This block will apply to all recording rules.
match {
kind = "recording"
}
# Ensure that all aggregations are preserving "job" label.
aggregate ".+" {
severity = "bug"
keep = ["job"]
}
# Enable cost checks that will print the number of returned time series and try
# to estimate total memory usage.
cost {}
}
rule {
# This block will apply to all recording rules in "recording/federation" directory.
match {
kind = "recording"
path = "recording/federation/.+"
}
# All recording rules named "cluster:.+" must strip "instance" label when aggregating.
# Example rule that would raise a linter error:
# - record: cluster:http_requests:rate5m
# expr: sum(rate(http_requests_total[5m])) by (job, instance)
# Rules that would be allowed:
# - record: cluster:http_requests:rate5m
# expr: sum(rate(http_requests_total[5m])) by (job)
# - record: cluster:http_requests:rate5m
# expr: sum(rate(http_requests_total[5m]))
aggregate "cluster:.+" {
severity = "bug"
strip = ["instance"]
}
}