-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.go
204 lines (169 loc) · 4.9 KB
/
config.go
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
package blackbox
/*
Copyright 2020 Google LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import (
"fmt"
"regexp"
"sort"
"strings"
"time"
bbconfig "github.com/prometheus/blackbox_exporter/config"
"gopkg.in/yaml.v3"
)
// Config represents a prometheus blackbox monitoring config, encompassing
// blackbox_exporter module configuration and prometheus target configuration.
type Config struct {
Modules ModuleMap
Targets *Targets
}
// We need to check both the production site on the CDN and the local version.
func (c *Config) AddSimpleRule(url string, os ...*Option) {
m := &Module{Name: "http_200", Module: BaseHTTPModule(200)}
m.applyOptions(os...)
c.Modules.Add(m)
n := url
if len(os) > 0 {
n = m.Name
}
c.Targets.Add(m, url, n)
}
func (c *Config) AddSimpleRuleWithRedirect(url string, os ...*Option) {
c.AddSimpleRule(url, os...)
if strings.HasPrefix(url, "https://") {
c.AddHTTPSRedirRule(url, Status(301, 302, 308))
}
}
var idChars = regexp.MustCompile(`[^A-Za-z0-9_]+`)
func cleanName(s string) string {
s = strings.TrimSuffix(s, "/")
return idChars.ReplaceAllString(s, "_")
}
func (c *Config) AddHTTPSRedirRule(in string, os ...*Option) {
src := strings.Replace(in, "https://", "http://", 1)
dst := strings.Replace(in, "http://", "https://", 1)
n := cleanName("redir_to_" + strings.TrimPrefix(dst, "http://"))
os = append(os, Name(n))
c.AddRedirRule(src, dst, os...)
}
func (c *Config) AddRedirRule(src, dst string, os ...*Option) {
m := RedirModule(302, dst)
n := cleanName("redir_to_" + strings.TrimPrefix(dst, "http://"))
os = append(os, Name(n))
m.applyOptions(os...)
c.Modules.Add(m)
c.Targets.Add(m, src, m.Name, os...)
}
func (c *Config) AddDNSRule(server, qtype, qname string, os ...*Option) {
m := DNSModule(qtype, qname)
n := cleanName(fmt.Sprintf("dns_%s_%s", qname, qtype))
os = append(os, Name(n))
m.applyOptions(os...)
c.Modules.Add(m)
c.Targets.Add(m, server, m.Name, os...)
}
func (c *Config) AddTCPRule(server string, qr []bbconfig.QueryResponse, os ...*Option) {
m := TCPModule(qr)
// Do we need custom name options here?
m.applyOptions(os...)
c.Modules.Add(m)
c.Targets.Add(m, server, m.Name, os...)
}
func (c *Config) AddSMTPRule(server string, os ...*Option) {
os = append([]*Option{Name("smtp"), Timeout(5 * time.Second)}, os...)
c.AddTCPRule(server,
[]bbconfig.QueryResponse{
bbconfig.QueryResponse{
// Some mail servers return '220-' instead of '220 '. This is
// probably a bug.
Expect: bbconfig.MustNewRegexp("^220[ -]([^ ]+) ESMTP(.+)?$"),
},
bbconfig.QueryResponse{
Send: "HELO prober\r",
},
bbconfig.QueryResponse{
Expect: bbconfig.MustNewRegexp("^250 "),
},
// TODO: We can support STARTTLS by conditionally inserting STARTTLS and a EHLO here.
bbconfig.QueryResponse{
Send: "QUIT\r",
},
bbconfig.QueryResponse{
Expect: bbconfig.MustNewRegexp("^221 "),
},
},
os...)
}
func (c *Config) AddIMAPRule(server string, os ...*Option) {
os = append([]*Option{Name("imap"), Timeout(5 * time.Second)}, os...)
c.AddTCPRule(server,
[]bbconfig.QueryResponse{
bbconfig.QueryResponse{
Expect: bbconfig.MustNewRegexp(`^\* OK \[.+IMAP4.+`),
},
bbconfig.QueryResponse{
Send: "QUIT\r",
},
},
os...)
}
func (c *Config) AddNNTPRule(server string, os ...*Option) {
os = append([]*Option{Name("nntp"), Timeout(10 * time.Second)}, os...)
c.AddTCPRule(server,
[]bbconfig.QueryResponse{
bbconfig.QueryResponse{
Expect: bbconfig.MustNewRegexp(`^200\s`),
},
bbconfig.QueryResponse{
Send: "QUIT\r",
},
},
os...)
}
// BBConfig is like blackbox.Config, but uses a yaml.MapSlice instead of a proper map.
type BBConfig struct {
Modules yaml.Node `yaml:"modules"`
}
func (c *Config) Marshal() ([]byte, error) {
keys := []string{}
var bbm = make(map[string]bbconfig.Module)
for n, m := range c.Modules {
keys = append(keys, n)
bbm[n] = *m.Module
}
sort.Strings(keys)
var bbc BBConfig
bbc.Modules.Kind = yaml.MappingNode
for _, k := range keys {
var n yaml.Node
n.Encode(bbm[k])
bbc.Modules.Content = append(bbc.Modules.Content,
&yaml.Node{Kind: yaml.ScalarNode, Value: k},
&n,
)
}
return yaml.Marshal(&bbc)
}
func (c *Config) BBModules() bbconfig.Config {
var bbm = make(map[string]bbconfig.Module)
for n, m := range c.Modules {
bbm[n] = *m.Module
}
bbc := bbconfig.Config{
Modules: bbm,
}
return bbc
}
type Option struct {
ModuleOption func(m *Module)
TargetOption func(t *Target)
}