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>
33 lines
976 B
Go
33 lines
976 B
Go
package vars
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/coredns/coredns/request"
|
|
)
|
|
|
|
// Report reports the metrics data associated with request. This function is exported because it is also
|
|
// called from core/dnsserver to report requests hitting the server that should not be handled and are thus
|
|
// not sent down the plugin chain.
|
|
func Report(server string, req request.Request, zone, rcode string, size int, start time.Time) {
|
|
// Proto and Family.
|
|
net := req.Proto()
|
|
fam := "1"
|
|
if req.Family() == 2 {
|
|
fam = "2"
|
|
}
|
|
|
|
if req.Do() {
|
|
RequestDo.WithLabelValues(server, zone).Inc()
|
|
}
|
|
|
|
qtype := qTypeString(req.QType())
|
|
RequestCount.WithLabelValues(server, zone, net, fam, qtype).Inc()
|
|
|
|
RequestDuration.WithLabelValues(server, zone).Observe(time.Since(start).Seconds())
|
|
|
|
ResponseSize.WithLabelValues(server, zone, net).Observe(float64(size))
|
|
RequestSize.WithLabelValues(server, zone, net).Observe(float64(req.Len()))
|
|
|
|
ResponseRcode.WithLabelValues(server, zone, rcode).Inc()
|
|
}
|