mirror of
https://github.com/coredns/coredns.git
synced 2025-11-02 10:13:14 -05:00
* Make CoreDNS a server type plugin for Caddy Remove code we don't need and port all middleware over. Fix all tests and rework the documentation. Also make `go generate` build a caddy binary which we then copy into our directory. This means `go build`-builds remain working as-is. And new etc instances in each etcd test for better isolation. Fix more tests and rework test.Server with the newer support Caddy offers. Fix Makefile to support new mode of operation.
58 lines
787 B
Go
58 lines
787 B
Go
package health
|
|
|
|
import (
|
|
"io"
|
|
"log"
|
|
"net"
|
|
"net/http"
|
|
"sync"
|
|
)
|
|
|
|
var once sync.Once
|
|
|
|
type Health struct {
|
|
Addr string
|
|
|
|
ln net.Listener
|
|
mux *http.ServeMux
|
|
}
|
|
|
|
func health(w http.ResponseWriter, r *http.Request) {
|
|
io.WriteString(w, ok)
|
|
}
|
|
|
|
func (h *Health) Startup() error {
|
|
if h.Addr == "" {
|
|
h.Addr = defAddr
|
|
}
|
|
|
|
once.Do(func() {
|
|
if ln, err := net.Listen("tcp", h.Addr); err != nil {
|
|
log.Printf("[ERROR] Failed to start health handler: %s", err)
|
|
return
|
|
} else {
|
|
h.ln = ln
|
|
}
|
|
h.mux = http.NewServeMux()
|
|
|
|
h.mux.HandleFunc(path, health)
|
|
go func() {
|
|
http.Serve(h.ln, h.mux)
|
|
}()
|
|
})
|
|
return nil
|
|
}
|
|
|
|
func (h *Health) Shutdown() error {
|
|
if h.ln != nil {
|
|
return h.ln.Close()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
const (
|
|
ok = "OK"
|
|
defAddr = ":8080"
|
|
path = "/health"
|
|
)
|