2016-08-19 17:14:17 -07:00
|
|
|
package health
|
|
|
|
|
|
2016-09-10 09:16:25 +01:00
|
|
|
import (
|
2017-08-27 21:33:38 +01:00
|
|
|
"net"
|
|
|
|
|
"time"
|
|
|
|
|
|
|
|
|
|
"github.com/coredns/coredns/core/dnsserver"
|
2017-09-14 09:36:06 +01:00
|
|
|
"github.com/coredns/coredns/plugin"
|
2016-09-10 09:16:25 +01:00
|
|
|
|
|
|
|
|
"github.com/mholt/caddy"
|
|
|
|
|
)
|
2016-08-19 17:14:17 -07:00
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
caddy.RegisterPlugin("health", caddy.Plugin{
|
|
|
|
|
ServerType: "dns",
|
|
|
|
|
Action: setup,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func setup(c *caddy.Controller) error {
|
|
|
|
|
addr, err := healthParse(c)
|
|
|
|
|
if err != nil {
|
2017-09-14 09:36:06 +01:00
|
|
|
return plugin.Error("health", err)
|
2016-08-19 17:14:17 -07:00
|
|
|
}
|
|
|
|
|
|
2016-09-23 09:14:12 +01:00
|
|
|
h := &health{Addr: addr}
|
2017-08-27 21:33:38 +01:00
|
|
|
|
|
|
|
|
c.OnStartup(func() error {
|
|
|
|
|
for he := range healthers {
|
|
|
|
|
m := dnsserver.GetConfig(c).Handler(he)
|
|
|
|
|
if x, ok := m.(Healther); ok {
|
|
|
|
|
h.h = append(h.h, x)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
c.OnStartup(func() error {
|
|
|
|
|
h.poll()
|
|
|
|
|
go func() {
|
|
|
|
|
for {
|
|
|
|
|
<-time.After(1 * time.Second)
|
|
|
|
|
h.poll()
|
|
|
|
|
}
|
|
|
|
|
}()
|
|
|
|
|
return nil
|
|
|
|
|
})
|
|
|
|
|
|
2016-09-23 09:14:12 +01:00
|
|
|
c.OnStartup(h.Startup)
|
2017-08-29 21:23:13 +02:00
|
|
|
c.OnFinalShutdown(h.Shutdown)
|
2016-08-19 17:14:17 -07:00
|
|
|
|
2017-09-16 14:13:28 +01:00
|
|
|
// Don't do AddPlugin, as health is not *really* a plugin just a separate webserver running.
|
2016-08-19 17:14:17 -07:00
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func healthParse(c *caddy.Controller) (string, error) {
|
|
|
|
|
addr := ""
|
|
|
|
|
for c.Next() {
|
|
|
|
|
args := c.RemainingArgs()
|
|
|
|
|
|
|
|
|
|
switch len(args) {
|
|
|
|
|
case 0:
|
|
|
|
|
case 1:
|
|
|
|
|
addr = args[0]
|
2017-08-27 21:33:38 +01:00
|
|
|
if _, _, e := net.SplitHostPort(addr); e != nil {
|
|
|
|
|
return "", e
|
|
|
|
|
}
|
2016-08-19 17:14:17 -07:00
|
|
|
default:
|
|
|
|
|
return "", c.ArgErr()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return addr, nil
|
|
|
|
|
}
|