2016-04-06 09:21:46 +01:00
|
|
|
package health
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"io"
|
|
|
|
|
"log"
|
2016-04-29 07:28:35 +01:00
|
|
|
"net"
|
2016-04-06 09:21:46 +01:00
|
|
|
"net/http"
|
|
|
|
|
"sync"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var once sync.Once
|
|
|
|
|
|
|
|
|
|
type Health struct {
|
|
|
|
|
Addr string
|
2016-04-29 07:28:35 +01:00
|
|
|
ln net.Listener
|
|
|
|
|
mux *http.ServeMux
|
2016-04-06 09:21:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func health(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
io.WriteString(w, ok)
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-29 07:28:35 +01:00
|
|
|
func (h *Health) Start() error {
|
2016-04-06 09:21:46 +01:00
|
|
|
if h.Addr == "" {
|
|
|
|
|
h.Addr = defAddr
|
|
|
|
|
}
|
2016-04-29 07:28:35 +01:00
|
|
|
|
2016-04-06 09:21:46 +01:00
|
|
|
once.Do(func() {
|
2016-04-29 07:28:35 +01:00
|
|
|
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)
|
2016-04-06 09:21:46 +01:00
|
|
|
go func() {
|
2016-04-29 07:28:35 +01:00
|
|
|
http.Serve(h.ln, h.mux)
|
2016-04-06 09:21:46 +01:00
|
|
|
}()
|
|
|
|
|
})
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-29 07:28:35 +01:00
|
|
|
func (h *Health) Shutdown() error {
|
|
|
|
|
if h.ln != nil {
|
|
|
|
|
return h.ln.Close()
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-06 09:21:46 +01:00
|
|
|
const (
|
|
|
|
|
ok = "OK"
|
|
|
|
|
defAddr = ":8080"
|
2016-04-29 07:28:35 +01:00
|
|
|
path = "/health"
|
2016-04-06 09:21:46 +01:00
|
|
|
)
|