mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-29 01:04:15 -04:00 
			
		
		
		
	* - ensure plugins that use prometheus.MustRegister, re-register after reload - removing once.Do on the startup function was simplest way to do it. * - fix underscored names (advice of bot) * - tune existing UT for reload, and add a test verifying failing reload does not prevent correct registering for metrics * - ensure different ports for tests that can run in same time ..
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package template
 | |
| 
 | |
| import (
 | |
| 	"github.com/coredns/coredns/plugin"
 | |
| 	"github.com/coredns/coredns/plugin/metrics"
 | |
| 
 | |
| 	"github.com/mholt/caddy"
 | |
| 	"github.com/prometheus/client_golang/prometheus"
 | |
| )
 | |
| 
 | |
| var (
 | |
| 	templateMatchesCount = prometheus.NewCounterVec(prometheus.CounterOpts{
 | |
| 		Namespace: plugin.Namespace,
 | |
| 		Subsystem: "template",
 | |
| 		Name:      "matches_total",
 | |
| 		Help:      "Counter of template regex matches.",
 | |
| 	}, []string{"server", "zone", "class", "type"})
 | |
| 	templateFailureCount = prometheus.NewCounterVec(prometheus.CounterOpts{
 | |
| 		Namespace: plugin.Namespace,
 | |
| 		Subsystem: "template",
 | |
| 		Name:      "template_failures_total",
 | |
| 		Help:      "Counter of go template failures.",
 | |
| 	}, []string{"server", "zone", "class", "type", "section", "template"})
 | |
| 	templateRRFailureCount = prometheus.NewCounterVec(prometheus.CounterOpts{
 | |
| 		Namespace: plugin.Namespace,
 | |
| 		Subsystem: "template",
 | |
| 		Name:      "rr_failures_total",
 | |
| 		Help:      "Counter of mis-templated RRs.",
 | |
| 	}, []string{"server", "zone", "class", "type", "section", "template"})
 | |
| )
 | |
| 
 | |
| // OnStartupMetrics sets up the metrics on startup.
 | |
| func setupMetrics(c *caddy.Controller) error {
 | |
| 	c.OnStartup(func() error {
 | |
| 		metrics.MustRegister(c, templateMatchesCount, templateFailureCount, templateRRFailureCount)
 | |
| 		return nil
 | |
| 	})
 | |
| 
 | |
| 	return nil
 | |
| }
 |