mirror of
https://github.com/coredns/coredns.git
synced 2025-10-27 08:14:18 -04:00
* Update all plugins to use plugin/pkg/log I wish this could have been done with sed. Alas manually changed all callers to use the new plugin/pkg/log package. * Error -> Info * Add docs to debug plugin as well
88 lines
1.6 KiB
Go
88 lines
1.6 KiB
Go
// Package health implements an HTTP handler that responds to health checks.
|
|
package health
|
|
|
|
import (
|
|
"io"
|
|
"net"
|
|
"net/http"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/coredns/coredns/plugin/pkg/log"
|
|
)
|
|
|
|
// Health implements healthchecks by polling plugins.
|
|
type health struct {
|
|
Addr string
|
|
lameduck time.Duration
|
|
|
|
ln net.Listener
|
|
mux *http.ServeMux
|
|
|
|
// A slice of Healthers that the health plugin will poll every second for their health status.
|
|
h []Healther
|
|
sync.RWMutex
|
|
ok bool // ok is the global boolean indicating an all healthy plugin stack
|
|
|
|
stop chan bool
|
|
pollstop chan bool
|
|
}
|
|
|
|
// newHealth returns a new initialized health.
|
|
func newHealth(addr string) *health {
|
|
return &health{Addr: addr, stop: make(chan bool), pollstop: make(chan bool)}
|
|
}
|
|
|
|
func (h *health) OnStartup() error {
|
|
if h.Addr == "" {
|
|
h.Addr = defAddr
|
|
}
|
|
|
|
ln, err := net.Listen("tcp", h.Addr)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
h.ln = ln
|
|
h.mux = http.NewServeMux()
|
|
|
|
h.mux.HandleFunc(path, func(w http.ResponseWriter, r *http.Request) {
|
|
if h.Ok() {
|
|
w.WriteHeader(http.StatusOK)
|
|
io.WriteString(w, ok)
|
|
return
|
|
}
|
|
w.WriteHeader(http.StatusServiceUnavailable)
|
|
})
|
|
|
|
go func() { http.Serve(h.ln, h.mux) }()
|
|
go func() { h.overloaded() }()
|
|
|
|
return nil
|
|
}
|
|
|
|
func (h *health) OnShutdown() error {
|
|
// Stop polling plugins
|
|
h.pollstop <- true
|
|
// NACK health
|
|
h.SetOk(false)
|
|
|
|
if h.lameduck > 0 {
|
|
log.Infof("Going into lameduck mode for %s", h.lameduck)
|
|
time.Sleep(h.lameduck)
|
|
}
|
|
|
|
if h.ln != nil {
|
|
return h.ln.Close()
|
|
}
|
|
|
|
h.stop <- true
|
|
return nil
|
|
}
|
|
|
|
const (
|
|
ok = "OK"
|
|
defAddr = ":8080"
|
|
path = "/health"
|
|
)
|