We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2a6afa commit 62af740Copy full SHA for 62af740
engine/plugins/service_discovery/http_probes/fqdn_endpoint.go
@@ -37,7 +37,8 @@ func (fe *fqdnEndpoint) check(e *et.Event) error {
37
if !e.Session.Config().Active {
38
return nil
39
}
40
- if !support.HasDNSRecordType(e, int(dns.TypeA)) &&
+ if !support.HasDNSRecordType(e, int(dns.TypeCNAME)) &&
41
+ !support.HasDNSRecordType(e, int(dns.TypeA)) &&
42
!support.HasDNSRecordType(e, int(dns.TypeAAAA)) {
43
44
0 commit comments