Fix case where a master isn't available

This commit is contained in:
Simon Marsh 2019-07-11 09:09:12 +01:00
parent 028a9ab276
commit ff83171909
Signed by: burble
GPG Key ID: 7B9FE8780CFB6593

3
dns.go
View File

@ -243,6 +243,8 @@ func (m *DNSMetrics) Collect() {
for ix, server := range dns_servers { for ix, server := range dns_servers {
if server.role == "master" { if server.role == "master" {
// check that a result was actually received by the master
if results[ix] != nil {
soa := results[ix].serial soa := results[ix].serial
masters = append(masters, soa) masters = append(masters, soa)
if soa > latest_soa { if soa > latest_soa {
@ -250,6 +252,7 @@ func (m *DNSMetrics) Collect() {
} }
} }
} }
}
// fmt.Printf("latest_soa %d\n", latest_soa) // fmt.Printf("latest_soa %d\n", latest_soa)