* plugin/forward Add rcode and rtype to request_duration_seconds metric Signed-off-by: Maxime Ginters <maxime.ginters@shopify.com> * Control the cardinality of query type Signed-off-by: Maxime Ginters <maxime.ginters@shopify.com>
34 lines
1 KiB
Go
34 lines
1 KiB
Go
package vars
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/coredns/coredns/plugin/pkg/dnsutil"
|
|
"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"
|
|
}
|
|
|
|
qtype := dnsutil.QTypeMonitorLabel(req.QType())
|
|
|
|
if req.Do() {
|
|
RequestDo.WithLabelValues(server, zone).Inc()
|
|
}
|
|
|
|
RequestCount.WithLabelValues(server, zone, net, fam, qtype).Inc()
|
|
RequestDuration.WithLabelValues(server, zone, qtype).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()
|
|
}
|