* Doc: add package docs Add short package level docs to make godoc looks nicer. Add some badges to the README. * correct url
59 lines
845 B
Go
59 lines
845 B
Go
// Package health implements an HTTP handler that responds to health checks.
|
|
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 (h *health) Startup() error {
|
|
if h.Addr == "" {
|
|
h.Addr = defAddr
|
|
}
|
|
|
|
once.Do(func() {
|
|
ln, err := net.Listen("tcp", h.Addr)
|
|
if err != nil {
|
|
log.Printf("[ERROR] Failed to start health handler: %s", err)
|
|
return
|
|
}
|
|
|
|
h.ln = ln
|
|
|
|
h.mux = http.NewServeMux()
|
|
|
|
h.mux.HandleFunc(path, func(w http.ResponseWriter, r *http.Request) {
|
|
io.WriteString(w, ok)
|
|
})
|
|
|
|
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"
|
|
)
|