2016-11-26 18:48:49 +00:00
|
|
|
package healthcheck
|
|
|
|
|
|
|
|
import (
|
2016-11-30 21:49:57 +00:00
|
|
|
"context"
|
2017-03-24 08:36:33 +00:00
|
|
|
"fmt"
|
2017-05-10 18:28:57 +00:00
|
|
|
"net"
|
2016-11-26 18:48:49 +00:00
|
|
|
"net/http"
|
|
|
|
"net/url"
|
2017-05-10 18:28:57 +00:00
|
|
|
"strconv"
|
2016-11-26 18:48:49 +00:00
|
|
|
"sync"
|
|
|
|
"time"
|
2017-01-31 21:55:02 +00:00
|
|
|
|
2019-08-03 01:58:23 +00:00
|
|
|
"github.com/containous/traefik/v2/pkg/config/runtime"
|
|
|
|
"github.com/containous/traefik/v2/pkg/log"
|
|
|
|
"github.com/containous/traefik/v2/pkg/safe"
|
2018-01-26 10:58:03 +00:00
|
|
|
"github.com/go-kit/kit/metrics"
|
2017-01-31 21:55:02 +00:00
|
|
|
"github.com/vulcand/oxy/roundrobin"
|
2016-11-26 18:48:49 +00:00
|
|
|
)
|
|
|
|
|
2019-05-16 08:58:06 +00:00
|
|
|
const (
|
|
|
|
serverUp = "UP"
|
|
|
|
serverDown = "DOWN"
|
|
|
|
)
|
|
|
|
|
2016-11-26 18:48:49 +00:00
|
|
|
var singleton *HealthCheck
|
|
|
|
var once sync.Once
|
|
|
|
|
2018-06-11 09:36:03 +00:00
|
|
|
// BalancerHandler includes functionality for load-balancing management.
|
|
|
|
type BalancerHandler interface {
|
|
|
|
ServeHTTP(w http.ResponseWriter, req *http.Request)
|
|
|
|
Servers() []*url.URL
|
|
|
|
RemoveServer(u *url.URL) error
|
|
|
|
UpsertServer(u *url.URL, options ...roundrobin.ServerOption) error
|
|
|
|
}
|
|
|
|
|
|
|
|
// metricsRegistry is a local interface in the health check package, exposing only the required metrics
|
|
|
|
// necessary for the health check package. This makes it easier for the tests.
|
|
|
|
type metricsRegistry interface {
|
|
|
|
BackendServerUpGauge() metrics.Gauge
|
2016-11-26 18:48:49 +00:00
|
|
|
}
|
|
|
|
|
2017-03-15 18:16:06 +00:00
|
|
|
// Options are the public health check options.
|
|
|
|
type Options struct {
|
2018-04-16 09:40:03 +00:00
|
|
|
Headers map[string]string
|
|
|
|
Hostname string
|
2018-05-14 10:08:03 +00:00
|
|
|
Scheme string
|
2017-11-21 10:06:03 +00:00
|
|
|
Path string
|
|
|
|
Port int
|
|
|
|
Transport http.RoundTripper
|
|
|
|
Interval time.Duration
|
2018-09-27 18:16:03 +00:00
|
|
|
Timeout time.Duration
|
2018-06-11 09:36:03 +00:00
|
|
|
LB BalancerHandler
|
2017-03-15 18:16:06 +00:00
|
|
|
}
|
|
|
|
|
2017-03-24 08:36:33 +00:00
|
|
|
func (opt Options) String() string {
|
2018-09-27 18:16:03 +00:00
|
|
|
return fmt.Sprintf("[Hostname: %s Headers: %v Path: %s Port: %d Interval: %s Timeout: %s]", opt.Hostname, opt.Headers, opt.Path, opt.Port, opt.Interval, opt.Timeout)
|
2017-03-24 08:36:33 +00:00
|
|
|
}
|
|
|
|
|
2019-08-07 15:14:04 +00:00
|
|
|
type backendURL struct {
|
|
|
|
url *url.URL
|
|
|
|
weight int
|
|
|
|
}
|
|
|
|
|
2018-06-11 09:36:03 +00:00
|
|
|
// BackendConfig HealthCheck configuration for a backend
|
|
|
|
type BackendConfig struct {
|
2017-03-15 18:16:06 +00:00
|
|
|
Options
|
2018-11-27 16:42:04 +00:00
|
|
|
name string
|
2019-08-07 15:14:04 +00:00
|
|
|
disabledURLs []backendURL
|
2016-11-26 18:48:49 +00:00
|
|
|
}
|
|
|
|
|
2018-06-11 09:36:03 +00:00
|
|
|
func (b *BackendConfig) newRequest(serverURL *url.URL) (*http.Request, error) {
|
2018-11-15 14:50:03 +00:00
|
|
|
u, err := serverURL.Parse(b.Path)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-11-26 18:48:49 +00:00
|
|
|
|
2018-06-11 09:36:03 +00:00
|
|
|
if len(b.Scheme) > 0 {
|
|
|
|
u.Scheme = b.Scheme
|
|
|
|
}
|
2016-11-26 18:48:49 +00:00
|
|
|
|
2018-06-11 09:36:03 +00:00
|
|
|
if b.Port != 0 {
|
|
|
|
u.Host = net.JoinHostPort(u.Hostname(), strconv.Itoa(b.Port))
|
2017-03-09 15:27:31 +00:00
|
|
|
}
|
2016-11-26 18:48:49 +00:00
|
|
|
|
2018-10-23 08:10:04 +00:00
|
|
|
return http.NewRequest(http.MethodGet, u.String(), http.NoBody)
|
2018-01-26 10:58:03 +00:00
|
|
|
}
|
|
|
|
|
2018-06-11 09:36:03 +00:00
|
|
|
// this function adds additional http headers and hostname to http.request
|
|
|
|
func (b *BackendConfig) addHeadersAndHost(req *http.Request) *http.Request {
|
|
|
|
if b.Options.Hostname != "" {
|
|
|
|
req.Host = b.Options.Hostname
|
|
|
|
}
|
|
|
|
|
|
|
|
for k, v := range b.Options.Headers {
|
|
|
|
req.Header.Set(k, v)
|
2017-03-09 15:27:31 +00:00
|
|
|
}
|
2018-06-11 09:36:03 +00:00
|
|
|
return req
|
|
|
|
}
|
|
|
|
|
|
|
|
// HealthCheck struct
|
|
|
|
type HealthCheck struct {
|
|
|
|
Backends map[string]*BackendConfig
|
|
|
|
metrics metricsRegistry
|
|
|
|
cancel context.CancelFunc
|
2016-11-26 18:48:49 +00:00
|
|
|
}
|
|
|
|
|
2018-04-16 09:40:03 +00:00
|
|
|
// SetBackendsConfiguration set backends configuration
|
2018-06-11 09:36:03 +00:00
|
|
|
func (hc *HealthCheck) SetBackendsConfiguration(parentCtx context.Context, backends map[string]*BackendConfig) {
|
2016-11-26 18:48:49 +00:00
|
|
|
hc.Backends = backends
|
2016-11-30 21:49:57 +00:00
|
|
|
if hc.cancel != nil {
|
|
|
|
hc.cancel()
|
|
|
|
}
|
2017-01-31 21:55:02 +00:00
|
|
|
ctx, cancel := context.WithCancel(parentCtx)
|
2016-11-30 21:49:57 +00:00
|
|
|
hc.cancel = cancel
|
2016-11-26 18:48:49 +00:00
|
|
|
|
2018-01-15 16:27:37 +00:00
|
|
|
for _, backend := range backends {
|
2017-03-09 15:27:31 +00:00
|
|
|
currentBackend := backend
|
2017-01-31 21:55:02 +00:00
|
|
|
safe.Go(func() {
|
2018-01-03 11:32:03 +00:00
|
|
|
hc.execute(ctx, currentBackend)
|
2017-01-31 21:55:02 +00:00
|
|
|
})
|
2016-11-30 21:49:57 +00:00
|
|
|
}
|
2016-11-26 18:48:49 +00:00
|
|
|
}
|
|
|
|
|
2018-06-11 09:36:03 +00:00
|
|
|
func (hc *HealthCheck) execute(ctx context.Context, backend *BackendConfig) {
|
2019-09-13 17:28:04 +00:00
|
|
|
logger := log.FromContext(ctx)
|
|
|
|
logger.Debugf("Initial health check for backend: %q", backend.name)
|
|
|
|
|
|
|
|
hc.checkBackend(ctx, backend)
|
2017-03-09 15:27:31 +00:00
|
|
|
ticker := time.NewTicker(backend.Interval)
|
|
|
|
defer ticker.Stop()
|
2017-04-11 15:10:46 +00:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
2019-09-13 17:28:04 +00:00
|
|
|
logger.Debugf("Stopping current health check goroutines of backend: %s", backend.name)
|
2017-04-11 15:10:46 +00:00
|
|
|
return
|
|
|
|
case <-ticker.C:
|
2019-09-13 17:28:04 +00:00
|
|
|
logger.Debugf("Refreshing health check for backend: %s", backend.name)
|
|
|
|
hc.checkBackend(ctx, backend)
|
2017-03-09 15:27:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-13 17:28:04 +00:00
|
|
|
func (hc *HealthCheck) checkBackend(ctx context.Context, backend *BackendConfig) {
|
|
|
|
logger := log.FromContext(ctx)
|
|
|
|
|
2018-01-03 11:32:03 +00:00
|
|
|
enabledURLs := backend.LB.Servers()
|
2019-08-07 15:14:04 +00:00
|
|
|
var newDisabledURLs []backendURL
|
2018-11-14 09:18:03 +00:00
|
|
|
// FIXME re enable metrics
|
2018-08-06 18:00:03 +00:00
|
|
|
for _, disableURL := range backend.disabledURLs {
|
2019-02-05 16:10:03 +00:00
|
|
|
// FIXME serverUpMetricValue := float64(0)
|
2019-08-07 15:14:04 +00:00
|
|
|
if err := checkHealth(disableURL.url, backend); err == nil {
|
2019-09-13 17:28:04 +00:00
|
|
|
logger.Warnf("Health check up: Returning to server list. Backend: %q URL: %q Weight: %d",
|
2019-08-07 15:14:04 +00:00
|
|
|
backend.name, disableURL.url.String(), disableURL.weight)
|
|
|
|
if err = backend.LB.UpsertServer(disableURL.url, roundrobin.Weight(disableURL.weight)); err != nil {
|
2019-09-13 17:28:04 +00:00
|
|
|
logger.Error(err)
|
2018-08-06 18:00:03 +00:00
|
|
|
}
|
2019-02-05 16:10:03 +00:00
|
|
|
// FIXME serverUpMetricValue = 1
|
2017-04-11 15:10:46 +00:00
|
|
|
} else {
|
2019-09-13 17:28:04 +00:00
|
|
|
logger.Warnf("Health check still failing. Backend: %q URL: %q Reason: %s", backend.name, disableURL.url.String(), err)
|
2018-08-06 18:00:03 +00:00
|
|
|
newDisabledURLs = append(newDisabledURLs, disableURL)
|
2017-04-11 15:10:46 +00:00
|
|
|
}
|
2019-08-07 15:14:04 +00:00
|
|
|
// FIXME labelValues := []string{"backend", backend.name, "url", backendurl.url.String()}
|
2019-02-05 16:10:03 +00:00
|
|
|
// FIXME hc.metrics.BackendServerUpGauge().With(labelValues...).Set(serverUpMetricValue)
|
2017-04-11 15:10:46 +00:00
|
|
|
}
|
2018-01-03 11:32:03 +00:00
|
|
|
backend.disabledURLs = newDisabledURLs
|
2017-03-09 15:27:31 +00:00
|
|
|
|
2018-11-14 09:18:03 +00:00
|
|
|
// FIXME re enable metrics
|
2018-08-06 18:00:03 +00:00
|
|
|
for _, enableURL := range enabledURLs {
|
2019-02-05 16:10:03 +00:00
|
|
|
// FIXME serverUpMetricValue := float64(1)
|
2018-08-06 18:00:03 +00:00
|
|
|
if err := checkHealth(enableURL, backend); err != nil {
|
2019-08-07 15:14:04 +00:00
|
|
|
weight := 1
|
|
|
|
rr, ok := backend.LB.(*roundrobin.RoundRobin)
|
|
|
|
if ok {
|
|
|
|
var gotWeight bool
|
|
|
|
weight, gotWeight = rr.ServerWeight(enableURL)
|
|
|
|
if !gotWeight {
|
|
|
|
weight = 1
|
|
|
|
}
|
|
|
|
}
|
2019-09-13 17:28:04 +00:00
|
|
|
logger.Warnf("Health check failed: Remove from server list. Backend: %q URL: %q Weight: %d Reason: %s", backend.name, enableURL.String(), weight, err)
|
2018-08-06 18:00:03 +00:00
|
|
|
if err := backend.LB.RemoveServer(enableURL); err != nil {
|
2019-09-13 17:28:04 +00:00
|
|
|
logger.Error(err)
|
2018-08-06 18:00:03 +00:00
|
|
|
}
|
2019-08-07 15:14:04 +00:00
|
|
|
backend.disabledURLs = append(backend.disabledURLs, backendURL{enableURL, weight})
|
2019-02-05 16:10:03 +00:00
|
|
|
// FIXME serverUpMetricValue = 0
|
2017-04-11 15:10:46 +00:00
|
|
|
}
|
2019-02-05 16:10:03 +00:00
|
|
|
// FIXME labelValues := []string{"backend", backend.name, "url", enableURL.String()}
|
|
|
|
// FIXME hc.metrics.BackendServerUpGauge().With(labelValues...).Set(serverUpMetricValue)
|
2017-04-11 15:10:46 +00:00
|
|
|
}
|
2017-03-09 15:27:31 +00:00
|
|
|
}
|
|
|
|
|
2018-11-14 09:18:03 +00:00
|
|
|
// FIXME re add metrics
|
|
|
|
//func GetHealthCheck(metrics metricsRegistry) *HealthCheck {
|
|
|
|
|
2018-06-11 09:36:03 +00:00
|
|
|
// GetHealthCheck returns the health check which is guaranteed to be a singleton.
|
2018-11-14 09:18:03 +00:00
|
|
|
func GetHealthCheck() *HealthCheck {
|
2018-06-11 09:36:03 +00:00
|
|
|
once.Do(func() {
|
2018-11-14 09:18:03 +00:00
|
|
|
singleton = newHealthCheck()
|
|
|
|
//singleton = newHealthCheck(metrics)
|
2018-06-11 09:36:03 +00:00
|
|
|
})
|
|
|
|
return singleton
|
2017-05-10 18:28:57 +00:00
|
|
|
}
|
|
|
|
|
2018-11-14 09:18:03 +00:00
|
|
|
// FIXME re add metrics
|
|
|
|
//func newHealthCheck(metrics metricsRegistry) *HealthCheck {
|
|
|
|
func newHealthCheck() *HealthCheck {
|
2018-06-11 09:36:03 +00:00
|
|
|
return &HealthCheck{
|
|
|
|
Backends: make(map[string]*BackendConfig),
|
2018-11-14 09:18:03 +00:00
|
|
|
//metrics: metrics,
|
2018-04-16 09:40:03 +00:00
|
|
|
}
|
2018-06-11 09:36:03 +00:00
|
|
|
}
|
2018-05-22 07:22:03 +00:00
|
|
|
|
2018-06-11 09:36:03 +00:00
|
|
|
// NewBackendConfig Instantiate a new BackendConfig
|
|
|
|
func NewBackendConfig(options Options, backendName string) *BackendConfig {
|
|
|
|
return &BackendConfig{
|
2018-09-27 18:16:03 +00:00
|
|
|
Options: options,
|
|
|
|
name: backendName,
|
2018-04-16 09:40:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-03 11:32:03 +00:00
|
|
|
// checkHealth returns a nil error in case it was successful and otherwise
|
|
|
|
// a non-nil error with a meaningful description why the health check failed.
|
2018-06-11 09:36:03 +00:00
|
|
|
func checkHealth(serverURL *url.URL, backend *BackendConfig) error {
|
2017-05-10 18:28:57 +00:00
|
|
|
req, err := backend.newRequest(serverURL)
|
|
|
|
if err != nil {
|
2018-01-03 11:32:03 +00:00
|
|
|
return fmt.Errorf("failed to create HTTP request: %s", err)
|
2017-05-10 18:28:57 +00:00
|
|
|
}
|
2018-05-22 07:22:03 +00:00
|
|
|
|
2018-04-16 09:40:03 +00:00
|
|
|
req = backend.addHeadersAndHost(req)
|
2017-05-10 18:28:57 +00:00
|
|
|
|
2018-05-22 07:22:03 +00:00
|
|
|
client := http.Client{
|
2018-09-27 18:16:03 +00:00
|
|
|
Timeout: backend.Options.Timeout,
|
2018-05-22 07:22:03 +00:00
|
|
|
Transport: backend.Options.Transport,
|
2016-11-26 18:48:49 +00:00
|
|
|
}
|
2018-01-03 11:32:03 +00:00
|
|
|
|
2018-05-22 07:22:03 +00:00
|
|
|
resp, err := client.Do(req)
|
|
|
|
if err != nil {
|
2018-01-03 11:32:03 +00:00
|
|
|
return fmt.Errorf("HTTP request failed: %s", err)
|
|
|
|
}
|
2018-05-22 07:22:03 +00:00
|
|
|
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
2018-05-23 15:06:04 +00:00
|
|
|
if resp.StatusCode < http.StatusOK || resp.StatusCode >= http.StatusBadRequest {
|
|
|
|
return fmt.Errorf("received error status code: %v", resp.StatusCode)
|
2018-05-22 07:22:03 +00:00
|
|
|
}
|
|
|
|
|
2018-01-03 11:32:03 +00:00
|
|
|
return nil
|
2016-11-26 18:48:49 +00:00
|
|
|
}
|
2019-05-16 08:58:06 +00:00
|
|
|
|
|
|
|
// NewLBStatusUpdater returns a new LbStatusUpdater
|
2019-09-13 17:28:04 +00:00
|
|
|
func NewLBStatusUpdater(bh BalancerHandler, info *runtime.ServiceInfo) *LbStatusUpdater {
|
2019-05-16 08:58:06 +00:00
|
|
|
return &LbStatusUpdater{
|
|
|
|
BalancerHandler: bh,
|
2019-09-13 17:28:04 +00:00
|
|
|
serviceInfo: info,
|
2019-05-16 08:58:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// LbStatusUpdater wraps a BalancerHandler and a ServiceInfo,
|
|
|
|
// so it can keep track of the status of a server in the ServiceInfo.
|
|
|
|
type LbStatusUpdater struct {
|
|
|
|
BalancerHandler
|
2019-07-15 15:04:04 +00:00
|
|
|
serviceInfo *runtime.ServiceInfo // can be nil
|
2019-05-16 08:58:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveServer removes the given server from the BalancerHandler,
|
|
|
|
// and updates the status of the server to "DOWN".
|
|
|
|
func (lb *LbStatusUpdater) RemoveServer(u *url.URL) error {
|
|
|
|
err := lb.BalancerHandler.RemoveServer(u)
|
|
|
|
if err == nil && lb.serviceInfo != nil {
|
2019-07-15 15:04:04 +00:00
|
|
|
lb.serviceInfo.UpdateServerStatus(u.String(), serverDown)
|
2019-05-16 08:58:06 +00:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpsertServer adds the given server to the BalancerHandler,
|
|
|
|
// and updates the status of the server to "UP".
|
|
|
|
func (lb *LbStatusUpdater) UpsertServer(u *url.URL, options ...roundrobin.ServerOption) error {
|
|
|
|
err := lb.BalancerHandler.UpsertServer(u, options...)
|
|
|
|
if err == nil && lb.serviceInfo != nil {
|
2019-07-15 15:04:04 +00:00
|
|
|
lb.serviceInfo.UpdateServerStatus(u.String(), serverUp)
|
2019-05-16 08:58:06 +00:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|