2016-03-22 16:51:50 +00:00
|
|
|
/*
|
2016-07-12 03:42:47 +00:00
|
|
|
Copyright 2014 The Kubernetes Authors.
|
2016-03-22 16:51:50 +00:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package healthz
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
2017-09-29 17:12:14 +00:00
|
|
|
"strings"
|
2016-03-22 16:51:50 +00:00
|
|
|
"sync"
|
2017-09-29 17:12:14 +00:00
|
|
|
|
|
|
|
"github.com/golang/glog"
|
2016-03-22 16:51:50 +00:00
|
|
|
)
|
|
|
|
|
2017-04-01 14:42:02 +00:00
|
|
|
// HealthzChecker is a named healthz checker.
|
2016-03-22 16:51:50 +00:00
|
|
|
type HealthzChecker interface {
|
|
|
|
Name() string
|
|
|
|
Check(req *http.Request) error
|
|
|
|
}
|
|
|
|
|
|
|
|
var defaultHealthz = sync.Once{}
|
|
|
|
|
|
|
|
// DefaultHealthz installs the default healthz check to the http.DefaultServeMux.
|
|
|
|
func DefaultHealthz(checks ...HealthzChecker) {
|
|
|
|
defaultHealthz.Do(func() {
|
|
|
|
InstallHandler(http.DefaultServeMux, checks...)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// PingHealthz returns true automatically when checked
|
|
|
|
var PingHealthz HealthzChecker = ping{}
|
|
|
|
|
2017-04-01 14:42:02 +00:00
|
|
|
// ping implements the simplest possible healthz checker.
|
2016-03-22 16:51:50 +00:00
|
|
|
type ping struct{}
|
|
|
|
|
|
|
|
func (ping) Name() string {
|
|
|
|
return "ping"
|
|
|
|
}
|
|
|
|
|
|
|
|
// PingHealthz is a health check that returns true.
|
|
|
|
func (ping) Check(_ *http.Request) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-04-01 14:42:02 +00:00
|
|
|
// NamedCheck returns a healthz checker for the given name and function.
|
2016-03-22 16:51:50 +00:00
|
|
|
func NamedCheck(name string, check func(r *http.Request) error) HealthzChecker {
|
|
|
|
return &healthzCheck{name, check}
|
|
|
|
}
|
|
|
|
|
2017-09-29 17:12:14 +00:00
|
|
|
// InstallHandler registers handlers for health checking on the path
|
|
|
|
// "/healthz" to mux. *All handlers* for mux must be specified in
|
|
|
|
// exactly one call to InstallHandler. Calling InstallHandler more
|
|
|
|
// than once for the same mux will result in a panic.
|
2016-03-22 16:51:50 +00:00
|
|
|
func InstallHandler(mux mux, checks ...HealthzChecker) {
|
2018-07-12 17:19:04 +00:00
|
|
|
InstallPathHandler(mux, "/healthz", checks...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// InstallPathHandler registers handlers for health checking on
|
|
|
|
// a specific path to mux. *All handlers* for the path must be
|
|
|
|
// specified in exactly one call to InstallPathHandler. Calling
|
|
|
|
// InstallPathHandler more than once for the same path and mux will
|
|
|
|
// result in a panic.
|
|
|
|
func InstallPathHandler(mux mux, path string, checks ...HealthzChecker) {
|
2016-03-22 16:51:50 +00:00
|
|
|
if len(checks) == 0 {
|
2017-09-29 17:12:14 +00:00
|
|
|
glog.V(5).Info("No default health checks specified. Installing the ping handler.")
|
2016-03-22 16:51:50 +00:00
|
|
|
checks = []HealthzChecker{PingHealthz}
|
|
|
|
}
|
2017-09-29 17:12:14 +00:00
|
|
|
|
|
|
|
glog.V(5).Info("Installing healthz checkers:", strings.Join(checkerNames(checks...), ", "))
|
|
|
|
|
2018-07-12 17:19:04 +00:00
|
|
|
mux.Handle(path, handleRootHealthz(checks...))
|
2016-03-22 16:51:50 +00:00
|
|
|
for _, check := range checks {
|
2018-07-12 17:19:04 +00:00
|
|
|
mux.Handle(fmt.Sprintf("%s/%v", path, check.Name()), adaptCheckToHandler(check.Check))
|
2016-03-22 16:51:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// mux is an interface describing the methods InstallHandler requires.
|
|
|
|
type mux interface {
|
|
|
|
Handle(pattern string, handler http.Handler)
|
|
|
|
}
|
|
|
|
|
|
|
|
// healthzCheck implements HealthzChecker on an arbitrary name and check function.
|
|
|
|
type healthzCheck struct {
|
|
|
|
name string
|
|
|
|
check func(r *http.Request) error
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ HealthzChecker = &healthzCheck{}
|
|
|
|
|
|
|
|
func (c *healthzCheck) Name() string {
|
|
|
|
return c.name
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *healthzCheck) Check(r *http.Request) error {
|
|
|
|
return c.check(r)
|
|
|
|
}
|
|
|
|
|
|
|
|
// handleRootHealthz returns an http.HandlerFunc that serves the provided checks.
|
|
|
|
func handleRootHealthz(checks ...HealthzChecker) http.HandlerFunc {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
failed := false
|
|
|
|
var verboseOut bytes.Buffer
|
|
|
|
for _, check := range checks {
|
2018-04-21 17:10:40 +00:00
|
|
|
if err := check.Check(r); err != nil {
|
2017-04-01 14:42:02 +00:00
|
|
|
// don't include the error since this endpoint is public. If someone wants more detail
|
|
|
|
// they should have explicit permission to the detailed checks.
|
2018-04-21 17:10:40 +00:00
|
|
|
glog.V(6).Infof("healthz check %v failed: %v", check.Name(), err)
|
2017-04-01 14:42:02 +00:00
|
|
|
fmt.Fprintf(&verboseOut, "[-]%v failed: reason withheld\n", check.Name())
|
2016-03-22 16:51:50 +00:00
|
|
|
failed = true
|
|
|
|
} else {
|
|
|
|
fmt.Fprintf(&verboseOut, "[+]%v ok\n", check.Name())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// always be verbose on failure
|
|
|
|
if failed {
|
|
|
|
http.Error(w, fmt.Sprintf("%vhealthz check failed", verboseOut.String()), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, found := r.URL.Query()["verbose"]; !found {
|
|
|
|
fmt.Fprint(w, "ok")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
verboseOut.WriteTo(w)
|
|
|
|
fmt.Fprint(w, "healthz check passed\n")
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// adaptCheckToHandler returns an http.HandlerFunc that serves the provided checks.
|
|
|
|
func adaptCheckToHandler(c func(r *http.Request) error) http.HandlerFunc {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
err := c(r)
|
|
|
|
if err != nil {
|
2017-04-01 14:42:02 +00:00
|
|
|
http.Error(w, fmt.Sprintf("internal server error: %v", err), http.StatusInternalServerError)
|
2016-03-22 16:51:50 +00:00
|
|
|
} else {
|
|
|
|
fmt.Fprint(w, "ok")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2017-09-29 17:12:14 +00:00
|
|
|
|
|
|
|
// checkerNames returns the names of the checks in the same order as passed in.
|
|
|
|
func checkerNames(checks ...HealthzChecker) []string {
|
|
|
|
if len(checks) > 0 {
|
|
|
|
// accumulate the names of checks for printing them out.
|
|
|
|
checkerNames := make([]string, 0, len(checks))
|
|
|
|
for _, check := range checks {
|
|
|
|
// quote the Name so we can disambiguate
|
|
|
|
checkerNames = append(checkerNames, fmt.Sprintf("%q", check.Name()))
|
|
|
|
}
|
|
|
|
return checkerNames
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|