To combat label cardinality explosions remove the type from metrics. This was most severe in the histogram for request duration, remove it there. It's also highlighted difference between grpc and forward code, where forward did use type and grpc didn't; getting rid of all that "fixes" that discrepancy Move monitor.go back into the vars directory and make it private again. Also name it slightly better Fixes: #4507 Signed-off-by: Miek Gieben <miek@miek.nl>
35 lines
764 B
Go
35 lines
764 B
Go
package vars
|
|
|
|
import (
|
|
"github.com/miekg/dns"
|
|
)
|
|
|
|
var monitorType = map[uint16]struct{}{
|
|
dns.TypeAAAA: {},
|
|
dns.TypeA: {},
|
|
dns.TypeCNAME: {},
|
|
dns.TypeDNSKEY: {},
|
|
dns.TypeDS: {},
|
|
dns.TypeMX: {},
|
|
dns.TypeNSEC3: {},
|
|
dns.TypeNSEC: {},
|
|
dns.TypeNS: {},
|
|
dns.TypePTR: {},
|
|
dns.TypeRRSIG: {},
|
|
dns.TypeSOA: {},
|
|
dns.TypeSRV: {},
|
|
dns.TypeTXT: {},
|
|
// Meta Qtypes
|
|
dns.TypeIXFR: {},
|
|
dns.TypeAXFR: {},
|
|
dns.TypeANY: {},
|
|
}
|
|
|
|
// qTypeString returns the RR type based on monitorType. It returns the text representation
|
|
// of thosAe types. RR types not in that list will have "other" returned.
|
|
func qTypeString(qtype uint16) string {
|
|
if _, known := monitorType[qtype]; known {
|
|
return dns.Type(qtype).String()
|
|
}
|
|
return "other"
|
|
}
|