* plugins: Return error for multiple use of some Return plugin.ErrOnce when a plugin that doesn't support it, is called mutliple times. This now adds it for: cache, dnssec, errors, forward, hosts, nsid. And changes it slightly in kubernetes, pprof, reload, root. * more tests
55 lines
834 B
Go
55 lines
834 B
Go
package pprof
|
|
|
|
import (
|
|
"net"
|
|
"sync"
|
|
|
|
"github.com/coredns/coredns/plugin"
|
|
|
|
"github.com/mholt/caddy"
|
|
)
|
|
|
|
const defaultAddr = "localhost:6053"
|
|
|
|
func init() {
|
|
caddy.RegisterPlugin("pprof", caddy.Plugin{
|
|
ServerType: "dns",
|
|
Action: setup,
|
|
})
|
|
}
|
|
|
|
func setup(c *caddy.Controller) error {
|
|
h := &handler{addr: defaultAddr}
|
|
|
|
i := 0
|
|
for c.Next() {
|
|
if i > 0 {
|
|
return plugin.Error("pprof", plugin.ErrOnce)
|
|
}
|
|
i++
|
|
|
|
args := c.RemainingArgs()
|
|
if len(args) == 1 {
|
|
h.addr = args[0]
|
|
_, _, e := net.SplitHostPort(h.addr)
|
|
if e != nil {
|
|
return e
|
|
}
|
|
}
|
|
if len(args) > 1 {
|
|
return plugin.Error("pprof", c.ArgErr())
|
|
}
|
|
if c.NextBlock() {
|
|
return plugin.Error("pprof", c.ArgErr())
|
|
}
|
|
}
|
|
|
|
pprofOnce.Do(func() {
|
|
c.OnStartup(h.Startup)
|
|
c.OnShutdown(h.Shutdown)
|
|
})
|
|
|
|
return nil
|
|
}
|
|
|
|
var pprofOnce sync.Once
|