mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-31 10:13:14 -04:00 
			
		
		
		
	* Add a GaugeVec for enabled plugins monitoring. Signed-off-by: Jiacheng Xu <xjcmaxwellcjx@gmail.com> * Add server label and zone label for enable_plugin matric. * Add a test for PluginEnabled metric * Add description for enabledPlugin metric. * Change the description for the enabledPlugin metric. * Reset the enabledPlugin metric when restart the server. * Add the bug session for enabledPlugin metric. * Remove the resolveTCPAddr
		
			
				
	
	
		
			112 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			112 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package metrics
 | |
| 
 | |
| import (
 | |
| 	"net"
 | |
| 	"runtime"
 | |
| 
 | |
| 	"github.com/coredns/coredns/core/dnsserver"
 | |
| 	"github.com/coredns/coredns/coremain"
 | |
| 	"github.com/coredns/coredns/plugin"
 | |
| 	"github.com/coredns/coredns/plugin/metrics/vars"
 | |
| 	clog "github.com/coredns/coredns/plugin/pkg/log"
 | |
| 	"github.com/coredns/coredns/plugin/pkg/uniq"
 | |
| 
 | |
| 	"github.com/mholt/caddy"
 | |
| )
 | |
| 
 | |
| var (
 | |
| 	log      = clog.NewWithPlugin("prometheus")
 | |
| 	uniqAddr = uniq.New()
 | |
| )
 | |
| 
 | |
| func init() {
 | |
| 	caddy.RegisterPlugin("prometheus", caddy.Plugin{
 | |
| 		ServerType: "dns",
 | |
| 		Action:     setup,
 | |
| 	})
 | |
| }
 | |
| 
 | |
| func setup(c *caddy.Controller) error {
 | |
| 	m, err := prometheusParse(c)
 | |
| 	if err != nil {
 | |
| 		return plugin.Error("prometheus", err)
 | |
| 	}
 | |
| 
 | |
| 	// register the metrics to its address (ensure only one active metrics per address)
 | |
| 	obj := uniqAddr.Set(m.Addr, m.OnStartup, m)
 | |
| 	//propagate the real active Registry to current metrics
 | |
| 	if om, ok := obj.(*Metrics); ok {
 | |
| 		m.Reg = om.Reg
 | |
| 	}
 | |
| 
 | |
| 	dnsserver.GetConfig(c).AddPlugin(func(next plugin.Handler) plugin.Handler {
 | |
| 		m.Next = next
 | |
| 		return m
 | |
| 	})
 | |
| 
 | |
| 	c.OncePerServerBlock(func() error {
 | |
| 		c.OnStartup(func() error {
 | |
| 			return uniqAddr.ForEach()
 | |
| 		})
 | |
| 		return nil
 | |
| 	})
 | |
| 
 | |
| 	c.OnRestart(func() error {
 | |
| 		vars.PluginEnabled.Reset()
 | |
| 		return nil
 | |
| 	})
 | |
| 
 | |
| 	c.OnStartup(func() error {
 | |
| 		conf := dnsserver.GetConfig(c)
 | |
| 		plugins := conf.Handlers()
 | |
| 		for _, h := range conf.ListenHosts {
 | |
| 			addrstr := conf.Transport + "://" + net.JoinHostPort(h, conf.Port)
 | |
| 			for _, p := range plugins {
 | |
| 				vars.PluginEnabled.WithLabelValues(addrstr, conf.Zone, p.Name()).Set(1)
 | |
| 			}
 | |
| 		}
 | |
| 		return nil
 | |
| 
 | |
| 	})
 | |
| 	c.OnRestart(m.OnRestart)
 | |
| 	c.OnFinalShutdown(m.OnFinalShutdown)
 | |
| 
 | |
| 	// Initialize metrics.
 | |
| 	buildInfo.WithLabelValues(coremain.CoreVersion, coremain.GitCommit, runtime.Version()).Set(1)
 | |
| 
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func prometheusParse(c *caddy.Controller) (*Metrics, error) {
 | |
| 	var met = New(defaultAddr)
 | |
| 
 | |
| 	i := 0
 | |
| 	for c.Next() {
 | |
| 		if i > 0 {
 | |
| 			return nil, plugin.ErrOnce
 | |
| 		}
 | |
| 		i++
 | |
| 
 | |
| 		for _, z := range c.ServerBlockKeys {
 | |
| 			met.AddZone(plugin.Host(z).Normalize())
 | |
| 		}
 | |
| 		args := c.RemainingArgs()
 | |
| 
 | |
| 		switch len(args) {
 | |
| 		case 0:
 | |
| 		case 1:
 | |
| 			met.Addr = args[0]
 | |
| 			_, _, e := net.SplitHostPort(met.Addr)
 | |
| 			if e != nil {
 | |
| 				return met, e
 | |
| 			}
 | |
| 		default:
 | |
| 			return met, c.ArgErr()
 | |
| 		}
 | |
| 	}
 | |
| 	return met, nil
 | |
| }
 | |
| 
 | |
| // defaultAddr is the address the where the metrics are exported by default.
 | |
| const defaultAddr = "localhost:9153"
 |