mirror of
https://github.com/coredns/coredns.git
synced 2025-10-27 08:14:18 -04:00
* plugin/health: add lameduck mode Add a way to configure lameduck more, i.e. set health to false, stop polling plugins. Then wait for a duration before shutting down. As the health middleware is configured early on in the plugin list, it will hold up all other shutdown, meaning we still answer queries. * Add New * More tests * golint * remove confusing text
113 lines
2.0 KiB
Go
113 lines
2.0 KiB
Go
package health
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"time"
|
|
|
|
"github.com/coredns/coredns/core/dnsserver"
|
|
"github.com/coredns/coredns/plugin"
|
|
"github.com/coredns/coredns/plugin/metrics"
|
|
|
|
"github.com/mholt/caddy"
|
|
)
|
|
|
|
func init() {
|
|
caddy.RegisterPlugin("health", caddy.Plugin{
|
|
ServerType: "dns",
|
|
Action: setup,
|
|
})
|
|
}
|
|
|
|
func setup(c *caddy.Controller) error {
|
|
addr, lame, err := healthParse(c)
|
|
if err != nil {
|
|
return plugin.Error("health", err)
|
|
}
|
|
|
|
h := newHealth(addr)
|
|
h.lameduck = lame
|
|
|
|
c.OnStartup(func() error {
|
|
plugins := dnsserver.GetConfig(c).Handlers()
|
|
for _, p := range plugins {
|
|
if x, ok := p.(Healther); ok {
|
|
h.h = append(h.h, x)
|
|
}
|
|
}
|
|
return nil
|
|
})
|
|
|
|
c.OnStartup(func() error {
|
|
// Poll all middleware every second.
|
|
h.poll()
|
|
go func() {
|
|
for {
|
|
select {
|
|
case <-time.After(1 * time.Second):
|
|
h.poll()
|
|
case <-h.pollstop:
|
|
return
|
|
}
|
|
}
|
|
}()
|
|
return nil
|
|
})
|
|
|
|
c.OnStartup(func() error {
|
|
onceMetric.Do(func() {
|
|
m := dnsserver.GetConfig(c).Handler("prometheus")
|
|
if m == nil {
|
|
return
|
|
}
|
|
if x, ok := m.(*metrics.Metrics); ok {
|
|
x.MustRegister(HealthDuration)
|
|
}
|
|
})
|
|
return nil
|
|
})
|
|
|
|
c.OnStartup(h.OnStartup)
|
|
c.OnFinalShutdown(h.OnShutdown)
|
|
|
|
// Don't do AddPlugin, as health is not *really* a plugin just a separate webserver running.
|
|
return nil
|
|
}
|
|
|
|
func healthParse(c *caddy.Controller) (string, time.Duration, error) {
|
|
addr := ""
|
|
dur := time.Duration(0)
|
|
for c.Next() {
|
|
args := c.RemainingArgs()
|
|
|
|
switch len(args) {
|
|
case 0:
|
|
case 1:
|
|
addr = args[0]
|
|
if _, _, e := net.SplitHostPort(addr); e != nil {
|
|
return "", 0, e
|
|
}
|
|
default:
|
|
return "", 0, c.ArgErr()
|
|
}
|
|
|
|
for c.NextBlock() {
|
|
switch c.Val() {
|
|
case "lameduck":
|
|
args := c.RemainingArgs()
|
|
if len(args) != 1 {
|
|
return "", 0, c.ArgErr()
|
|
}
|
|
l, err := time.ParseDuration(args[0])
|
|
if err != nil {
|
|
return "", 0, fmt.Errorf("unable to parse lameduck duration value: '%v' : %v", args[0], err)
|
|
}
|
|
dur = l
|
|
default:
|
|
return "", 0, c.ArgErr()
|
|
}
|
|
}
|
|
}
|
|
return addr, dur, nil
|
|
}
|