thou I can't see them in exporter output. Am I missing out on something? I'm not a Go expert and it's hard for me to analyze source code, but I see some indications that they must be there
for _, s := range c.stats.Server.NameServerStats {
if desc, ok := serverLabelStats[s.Name]; ok {
r := strings.TrimPrefix(s.Name, "Qry")
ch <- prometheus.MustNewConstMetric(
desc, prometheus.CounterValue, float64(s.Counter), r,
)
}
Personally, I need QryUDP, QryTCP and ReqTCP metrics. I guess there is trimming of "Qry" and I can see Recursion and Dropped metrics, but where are the others?