Add OnReStartFailed which makes the health plugin stay up if the Corefile is corrupt and we revert to the previous version. Also needs a fix for the channel handling See #2659 Testing it will log the following when restarting with a corrupted Corefile ~~~ 2019-05-04T18:01:59.431Z [INFO] linux/amd64, go1.12.4, CoreDNS-1.5.0 linux/amd64, go1.12.4, [INFO] SIGUSR1: Reloading [INFO] Reloading [ERROR] Restart failed: Corefile:5 - Error during parsing: Unknown directive 'bdhfhdhj' [ERROR] SIGUSR1: starting with listener file descriptors: Corefile:5 - Error during parsing: Unknown directive 'bdhfhdhj' ~~~ After which the curl still works. This also needed a change to reset the channel used for the metrics go-routine which gets closed on shutdown, otherwise you'll see: ~~~ ^C[INFO] SIGINT: Shutting down panic: close of closed channel goroutine 90 [running]: github.com/coredns/coredns/plugin/health.(*health).OnFinalShutdown(0xc000089bc0, 0xc000063d88, 0x4afe6d) ~~~ Signed-off-by: Miek Gieben <miek@miek.nl>
78 lines
1.5 KiB
Go
78 lines
1.5 KiB
Go
package health
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"time"
|
|
|
|
"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 := parse(c)
|
|
if err != nil {
|
|
return plugin.Error("health", err)
|
|
}
|
|
|
|
h := &health{Addr: addr, stop: make(chan bool), lameduck: lame}
|
|
|
|
c.OnStartup(func() error {
|
|
metrics.MustRegister(c, HealthDuration)
|
|
return nil
|
|
})
|
|
|
|
c.OnStartup(h.OnStartup)
|
|
c.OnRestart(h.OnFinalShutdown)
|
|
c.OnFinalShutdown(h.OnFinalShutdown)
|
|
c.OnRestartFailed(h.OnStartup)
|
|
|
|
// Don't do AddPlugin, as health is not *really* a plugin just a separate webserver running.
|
|
return nil
|
|
}
|
|
|
|
func parse(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
|
|
}
|