mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 04:42:33 +02:00
139 lines
2.5 KiB
Go
139 lines
2.5 KiB
Go
package health
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"sync"
|
|
"sync/atomic"
|
|
"time"
|
|
|
|
"github.com/yusing/go-proxy/internal/net/types"
|
|
F "github.com/yusing/go-proxy/internal/utils/functional"
|
|
)
|
|
|
|
type (
|
|
HealthMonitor interface {
|
|
Start()
|
|
Stop()
|
|
IsHealthy() bool
|
|
String() string
|
|
}
|
|
HealthCheckFunc func() (healthy bool, detail string, err error)
|
|
monitor struct {
|
|
Name string
|
|
URL types.URL
|
|
Interval time.Duration
|
|
|
|
healthy atomic.Bool
|
|
checkHealth HealthCheckFunc
|
|
|
|
ctx context.Context
|
|
cancel context.CancelFunc
|
|
done chan struct{}
|
|
|
|
mu sync.Mutex
|
|
}
|
|
)
|
|
|
|
var monMap = F.NewMapOf[string, HealthMonitor]()
|
|
|
|
func newMonitor(parentCtx context.Context, name string, url types.URL, config *HealthCheckConfig, healthCheckFunc HealthCheckFunc) *monitor {
|
|
if parentCtx == nil {
|
|
parentCtx = context.Background()
|
|
}
|
|
ctx, cancel := context.WithCancel(parentCtx)
|
|
mon := &monitor{
|
|
Name: name,
|
|
URL: url.JoinPath(config.Path),
|
|
Interval: config.Interval,
|
|
checkHealth: healthCheckFunc,
|
|
ctx: ctx,
|
|
cancel: cancel,
|
|
done: make(chan struct{}),
|
|
}
|
|
mon.healthy.Store(true)
|
|
monMap.Store(name, mon)
|
|
return mon
|
|
}
|
|
|
|
func IsHealthy(name string) (healthy bool, ok bool) {
|
|
mon, ok := monMap.Load(name)
|
|
if !ok {
|
|
return
|
|
}
|
|
return mon.IsHealthy(), true
|
|
}
|
|
|
|
func (mon *monitor) Start() {
|
|
go func() {
|
|
defer close(mon.done)
|
|
|
|
ok := mon.checkUpdateHealth()
|
|
if !ok {
|
|
return
|
|
}
|
|
|
|
ticker := time.NewTicker(mon.Interval)
|
|
defer ticker.Stop()
|
|
|
|
for {
|
|
select {
|
|
case <-mon.ctx.Done():
|
|
return
|
|
case <-ticker.C:
|
|
ok = mon.checkUpdateHealth()
|
|
if !ok {
|
|
return
|
|
}
|
|
}
|
|
}
|
|
}()
|
|
logger.Debugf("health monitor %q started", mon)
|
|
}
|
|
|
|
func (mon *monitor) Stop() {
|
|
defer logger.Debugf("health monitor %q stopped", mon)
|
|
|
|
monMap.Delete(mon.Name)
|
|
|
|
mon.mu.Lock()
|
|
defer mon.mu.Unlock()
|
|
|
|
if mon.cancel == nil {
|
|
return
|
|
}
|
|
|
|
mon.cancel()
|
|
<-mon.done
|
|
|
|
mon.cancel = nil
|
|
}
|
|
|
|
func (mon *monitor) IsHealthy() bool {
|
|
return mon.healthy.Load()
|
|
}
|
|
|
|
func (mon *monitor) String() string {
|
|
return mon.Name
|
|
}
|
|
|
|
func (mon *monitor) checkUpdateHealth() (hasError bool) {
|
|
healthy, detail, err := mon.checkHealth()
|
|
if err != nil {
|
|
mon.healthy.Store(false)
|
|
if !errors.Is(err, context.Canceled) {
|
|
logger.Errorf("server %q failed to check health: %s", mon, err)
|
|
}
|
|
mon.Stop()
|
|
return false
|
|
}
|
|
if healthy != mon.healthy.Swap(healthy) {
|
|
if healthy {
|
|
logger.Infof("server %q is up", mon)
|
|
} else {
|
|
logger.Warnf("server %q is down: %s", mon, detail)
|
|
}
|
|
}
|
|
|
|
return true
|
|
}
|