-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Solve #717 Validating config should try to compile regexes #729
Changes from 5 commits
80f9893
407c3f8
49ae740
9741598
0a1c9ac
a7e6c3c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
modules: | ||
http_headers: | ||
prober: http | ||
timeout: 5s | ||
http: | ||
fail_if_body_matches_regexp: | ||
- ':[' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
modules: | ||
http_headers: | ||
prober: http | ||
timeout: 5s | ||
http: | ||
fail_if_body_not_matches_regexp: | ||
- ':[' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
modules: | ||
http_headers: | ||
prober: http | ||
timeout: 5s | ||
http: | ||
fail_if_header_not_matches: | ||
- header: Access-Control-Allow-Origin | ||
allow_missing: false | ||
regexp: ':[' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
modules: | ||
tcp_test: | ||
prober: tcp | ||
timeout: 5s | ||
tcp: | ||
query_response: | ||
- expect: ":[" | ||
- send: ". STARTTLS" |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -19,7 +19,6 @@ import ( | |||||||||||||||||||||||||||||||||||||||||||
"crypto/tls" | ||||||||||||||||||||||||||||||||||||||||||||
"fmt" | ||||||||||||||||||||||||||||||||||||||||||||
"net" | ||||||||||||||||||||||||||||||||||||||||||||
"regexp" | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
"github.com/go-kit/kit/log" | ||||||||||||||||||||||||||||||||||||||||||||
"github.com/go-kit/kit/log/level" | ||||||||||||||||||||||||||||||||||||||||||||
|
@@ -146,19 +145,14 @@ func ProbeTCP(ctx context.Context, target string, module config.Module, registry | |||||||||||||||||||||||||||||||||||||||||||
for i, qr := range module.TCP.QueryResponse { | ||||||||||||||||||||||||||||||||||||||||||||
level.Info(logger).Log("msg", "Processing query response entry", "entry_number", i) | ||||||||||||||||||||||||||||||||||||||||||||
send := qr.Send | ||||||||||||||||||||||||||||||||||||||||||||
if qr.Expect != "" { | ||||||||||||||||||||||||||||||||||||||||||||
re, err := regexp.Compile(qr.Expect) | ||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||
level.Error(logger).Log("msg", "Could not compile into regular expression", "regexp", qr.Expect, "err", err) | ||||||||||||||||||||||||||||||||||||||||||||
return false | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
if qr.Expect.Regexp != nil && qr.Expect.Regexp.String() != "" { | ||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Isn't Regexp always non-nil? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There is the case that config.Module instance is created in blackbox_exporter/prober/tcp_test.go Lines 359 to 378 in 49ae740
And when blackbox_exporter/prober/tcp_test.go Line 364 in 49ae740
But that occors only in the test senario. In this case, should I modify
Could you give me an advice. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You just need the first predicate here, only check for nil. Expecting an empty response is valid after all. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Thank you. I deleted the latter predicate. |
||||||||||||||||||||||||||||||||||||||||||||
var match []int | ||||||||||||||||||||||||||||||||||||||||||||
// Read lines until one of them matches the configured regexp. | ||||||||||||||||||||||||||||||||||||||||||||
for scanner.Scan() { | ||||||||||||||||||||||||||||||||||||||||||||
level.Debug(logger).Log("msg", "Read line", "line", scanner.Text()) | ||||||||||||||||||||||||||||||||||||||||||||
match = re.FindSubmatchIndex(scanner.Bytes()) | ||||||||||||||||||||||||||||||||||||||||||||
match = qr.Expect.Regexp.FindSubmatchIndex(scanner.Bytes()) | ||||||||||||||||||||||||||||||||||||||||||||
if match != nil { | ||||||||||||||||||||||||||||||||||||||||||||
level.Info(logger).Log("msg", "Regexp matched", "regexp", re, "line", scanner.Text()) | ||||||||||||||||||||||||||||||||||||||||||||
level.Info(logger).Log("msg", "Regexp matched", "regexp", qr.Expect.Regexp, "line", scanner.Text()) | ||||||||||||||||||||||||||||||||||||||||||||
break | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
|
@@ -168,11 +162,11 @@ func ProbeTCP(ctx context.Context, target string, module config.Module, registry | |||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
if match == nil { | ||||||||||||||||||||||||||||||||||||||||||||
probeFailedDueToRegex.Set(1) | ||||||||||||||||||||||||||||||||||||||||||||
level.Error(logger).Log("msg", "Regexp did not match", "regexp", re, "line", scanner.Text()) | ||||||||||||||||||||||||||||||||||||||||||||
level.Error(logger).Log("msg", "Regexp did not match", "regexp", qr.Expect.Regexp, "line", scanner.Text()) | ||||||||||||||||||||||||||||||||||||||||||||
return false | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
probeFailedDueToRegex.Set(0) | ||||||||||||||||||||||||||||||||||||||||||||
send = string(re.Expand(nil, []byte(send), scanner.Bytes(), match)) | ||||||||||||||||||||||||||||||||||||||||||||
send = string(qr.Expect.Regexp.Expand(nil, []byte(send), scanner.Bytes(), match)) | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
if send != "" { | ||||||||||||||||||||||||||||||||||||||||||||
level.Debug(logger).Log("msg", "Sending line", "line", send) | ||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not being set and being the empty string are different, if there's handling here it should be in the probe rather than here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I deleted this IF statement to accept nil.