2022-05-21 01:38:17 +00:00
|
|
|
package node
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net/http"
|
2022-05-23 19:04:13 +00:00
|
|
|
"sync/atomic"
|
2022-05-21 01:38:17 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
lapi "github.com/filecoin-project/lotus/api"
|
2022-05-23 16:29:11 +00:00
|
|
|
logging "github.com/ipfs/go-log/v2"
|
2022-05-21 01:38:17 +00:00
|
|
|
"github.com/libp2p/go-libp2p-core/network"
|
|
|
|
)
|
|
|
|
|
2022-05-23 16:29:11 +00:00
|
|
|
var healthlog = logging.Logger("healthcheck")
|
|
|
|
|
2022-05-21 01:38:17 +00:00
|
|
|
type HealthHandler struct {
|
2022-05-23 18:11:45 +00:00
|
|
|
healthy int32
|
2022-05-21 01:38:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h *HealthHandler) SetHealthy(healthy bool) {
|
2022-05-23 19:04:13 +00:00
|
|
|
var hi32 int32
|
2022-05-23 18:11:45 +00:00
|
|
|
if healthy {
|
2022-05-23 19:04:13 +00:00
|
|
|
hi32 = 1
|
2022-05-23 18:11:45 +00:00
|
|
|
}
|
2022-05-23 19:04:13 +00:00
|
|
|
atomic.StoreInt32(&h.healthy, hi32)
|
2022-05-21 01:38:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h *HealthHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
2022-05-23 18:11:45 +00:00
|
|
|
if atomic.LoadInt32(&h.healthy) != 1 {
|
2022-05-21 01:38:17 +00:00
|
|
|
w.WriteHeader(http.StatusServiceUnavailable)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
}
|
|
|
|
|
2022-05-23 19:04:13 +00:00
|
|
|
// Check that the node is still working. That is, that it's still processing the chain.
|
|
|
|
// If there have been no recent changes, consider the node to be dead.
|
2022-05-21 01:38:17 +00:00
|
|
|
func NewLiveHandler(api lapi.FullNode) *HealthHandler {
|
|
|
|
ctx := context.Background()
|
|
|
|
h := HealthHandler{}
|
|
|
|
go func() {
|
2022-05-23 19:04:13 +00:00
|
|
|
const reset int32 = 5
|
|
|
|
var countdown int32 = 0
|
2022-05-21 01:38:17 +00:00
|
|
|
minutely := time.NewTicker(time.Minute)
|
|
|
|
headCh, err := api.ChainNotify(ctx)
|
|
|
|
if err != nil {
|
2022-05-23 19:04:13 +00:00
|
|
|
healthlog.Warnf("failed to instantiate chain notify channel; liveness cannot be determined. %s", err)
|
2022-05-23 16:29:11 +00:00
|
|
|
h.SetHealthy(false)
|
|
|
|
return
|
2022-05-21 01:38:17 +00:00
|
|
|
}
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-minutely.C:
|
2022-05-23 19:04:13 +00:00
|
|
|
atomic.AddInt32(&countdown, -1)
|
|
|
|
if countdown <= 0 {
|
2022-05-21 01:38:17 +00:00
|
|
|
h.SetHealthy(false)
|
|
|
|
}
|
|
|
|
case <-headCh:
|
2022-05-23 19:04:13 +00:00
|
|
|
atomic.StoreInt32(&countdown, reset)
|
2022-05-21 01:38:17 +00:00
|
|
|
h.SetHealthy(true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
return &h
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if we are ready to handle traffic.
|
2022-05-23 19:04:13 +00:00
|
|
|
// 1. sync workers are reasonably up to date.
|
|
|
|
// 2. libp2p is servicable
|
2022-05-21 01:38:17 +00:00
|
|
|
func NewReadyHandler(api lapi.FullNode) *HealthHandler {
|
|
|
|
ctx := context.Background()
|
|
|
|
h := HealthHandler{}
|
|
|
|
go func() {
|
|
|
|
const heightTolerance = uint64(5)
|
|
|
|
var nethealth, synchealth bool
|
|
|
|
minutely := time.NewTicker(time.Minute)
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-minutely.C:
|
|
|
|
netstat, err := api.NetAutoNatStatus(ctx)
|
|
|
|
nethealth = err == nil && netstat.Reachability != network.ReachabilityUnknown
|
|
|
|
|
|
|
|
nodestat, err := api.NodeStatus(ctx, false)
|
|
|
|
synchealth = err == nil && nodestat.SyncStatus.Behind < heightTolerance
|
|
|
|
|
|
|
|
h.SetHealthy(nethealth && synchealth)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
return &h
|
|
|
|
}
|