Allow checking multiple SOAs from different servers
This commit is contained in:
parent
3a7108f620
commit
0fc7986bd0
29
dns.go
29
dns.go
@ -143,6 +143,11 @@ func (m *DNSMetrics) Collect() {
|
||||
|
||||
now := uint64(time.Now().Unix())
|
||||
|
||||
// icky icky icky
|
||||
masters := make([]uint64, 2)
|
||||
masters[0] = dns_servers[0].soa
|
||||
masters[1] = dns_servers[6].soa
|
||||
|
||||
// go through each server in turn
|
||||
for ix, server := range dns_servers {
|
||||
|
||||
@ -161,14 +166,20 @@ func (m *DNSMetrics) Collect() {
|
||||
// didn't get a result, server issue
|
||||
valid = 2
|
||||
} else {
|
||||
if server.soa != dns_servers[0].soa {
|
||||
// SOA didn't match
|
||||
// check if the SOA matches any defined master SOA
|
||||
|
||||
// assume not
|
||||
valid = 1
|
||||
} else {
|
||||
for _, soa := range masters {
|
||||
if server.soa == soa {
|
||||
// match was found
|
||||
valid = 0
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// before setting whether the server is valid, calculate the stime
|
||||
// (difference in time between now and the SOA, to allow checking that
|
||||
// it is not stale)
|
||||
@ -280,8 +291,16 @@ func (m *DNSCommitMetrics) Collect() {
|
||||
m.mismatch = true
|
||||
}
|
||||
|
||||
since := now.Sub(m.since).Seconds()
|
||||
|
||||
log.WithFields(log.Fields{
|
||||
"master": mc,
|
||||
"explorer": ec,
|
||||
"since": since,
|
||||
}).Warn("DNS Commit Mismatch")
|
||||
|
||||
// set the metric to be the interval since last good match
|
||||
m.match.With(m.labelInvalid).Set(float64(now.Sub(m.since).Seconds()))
|
||||
m.match.With(m.labelInvalid).Set(float64(since))
|
||||
}
|
||||
|
||||
} else {
|
||||
@ -326,7 +345,7 @@ func (m *DNSCommitMetrics) FetchExplorerCommit() (string, error) {
|
||||
|
||||
func (m *DNSCommitMetrics) FetchMasterCommit() (string, error) {
|
||||
|
||||
response, err := http.Get("http://[2a0c:3800:1:1011:5054:ff:fe87:ea39]:8080/api/git-db-state")
|
||||
response, err := http.Get("http://[fd42:180:3de0:10:5054:ff:fe87:ea39]:8080/api/git-db-state")
|
||||
if err != nil {
|
||||
log.WithFields(log.Fields{
|
||||
"error": err,
|
||||
|
Loading…
x
Reference in New Issue
Block a user