add healthz and livez endpoints
This commit is contained in:
parent
effee8ce1f
commit
444d0b1b8a
@ -174,7 +174,7 @@ var runCmd = &cli.Command{
|
|||||||
}
|
}
|
||||||
|
|
||||||
gwapi := gateway.NewNode(api, lookbackCap, waitLookback)
|
gwapi := gateway.NewNode(api, lookbackCap, waitLookback)
|
||||||
h, err := gateway.Handler(gwapi, serverOptions...)
|
h, err := gateway.Handler(gwapi, api, serverOptions...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return xerrors.Errorf("failed to set up gateway HTTP handler")
|
return xerrors.Errorf("failed to set up gateway HTTP handler")
|
||||||
}
|
}
|
||||||
|
@ -5,16 +5,17 @@ import (
|
|||||||
|
|
||||||
"contrib.go.opencensus.io/exporter/prometheus"
|
"contrib.go.opencensus.io/exporter/prometheus"
|
||||||
"github.com/filecoin-project/go-jsonrpc"
|
"github.com/filecoin-project/go-jsonrpc"
|
||||||
"github.com/filecoin-project/lotus/api"
|
lapi "github.com/filecoin-project/lotus/api"
|
||||||
"github.com/filecoin-project/lotus/api/v0api"
|
"github.com/filecoin-project/lotus/api/v0api"
|
||||||
"github.com/filecoin-project/lotus/api/v1api"
|
"github.com/filecoin-project/lotus/api/v1api"
|
||||||
"github.com/filecoin-project/lotus/metrics/proxy"
|
"github.com/filecoin-project/lotus/metrics/proxy"
|
||||||
|
"github.com/filecoin-project/lotus/node"
|
||||||
"github.com/gorilla/mux"
|
"github.com/gorilla/mux"
|
||||||
promclient "github.com/prometheus/client_golang/prometheus"
|
promclient "github.com/prometheus/client_golang/prometheus"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Handler returns a gateway http.Handler, to be mounted as-is on the server.
|
// Handler returns a gateway http.Handler, to be mounted as-is on the server.
|
||||||
func Handler(a api.Gateway, opts ...jsonrpc.ServerOption) (http.Handler, error) {
|
func Handler(gwapi lapi.Gateway, api lapi.FullNode, opts ...jsonrpc.ServerOption) (http.Handler, error) {
|
||||||
m := mux.NewRouter()
|
m := mux.NewRouter()
|
||||||
|
|
||||||
serveRpc := func(path string, hnd interface{}) {
|
serveRpc := func(path string, hnd interface{}) {
|
||||||
@ -23,10 +24,10 @@ func Handler(a api.Gateway, opts ...jsonrpc.ServerOption) (http.Handler, error)
|
|||||||
m.Handle(path, rpcServer)
|
m.Handle(path, rpcServer)
|
||||||
}
|
}
|
||||||
|
|
||||||
ma := proxy.MetricedGatewayAPI(a)
|
ma := proxy.MetricedGatewayAPI(gwapi)
|
||||||
|
|
||||||
serveRpc("/rpc/v1", ma)
|
serveRpc("/rpc/v1", ma)
|
||||||
serveRpc("/rpc/v0", api.Wrap(new(v1api.FullNodeStruct), new(v0api.WrapperV1Full), ma))
|
serveRpc("/rpc/v0", lapi.Wrap(new(v1api.FullNodeStruct), new(v0api.WrapperV1Full), ma))
|
||||||
|
|
||||||
registry := promclient.DefaultRegisterer.(*promclient.Registry)
|
registry := promclient.DefaultRegisterer.(*promclient.Registry)
|
||||||
exporter, err := prometheus.NewExporter(prometheus.Options{
|
exporter, err := prometheus.NewExporter(prometheus.Options{
|
||||||
@ -37,6 +38,8 @@ func Handler(a api.Gateway, opts ...jsonrpc.ServerOption) (http.Handler, error)
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
m.Handle("/debug/metrics", exporter)
|
m.Handle("/debug/metrics", exporter)
|
||||||
|
m.Handle("/health/livez", node.NewLiveHandler(api))
|
||||||
|
m.Handle("/health/readyz", node.NewReadyHandler(api))
|
||||||
m.PathPrefix("/").Handler(http.DefaultServeMux)
|
m.PathPrefix("/").Handler(http.DefaultServeMux)
|
||||||
|
|
||||||
/*ah := &auth.Handler{
|
/*ah := &auth.Handler{
|
||||||
|
81
node/health.go
Normal file
81
node/health.go
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
package node
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"net/http"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
lapi "github.com/filecoin-project/lotus/api"
|
||||||
|
"github.com/libp2p/go-libp2p-core/network"
|
||||||
|
)
|
||||||
|
|
||||||
|
type HealthHandler struct {
|
||||||
|
healthy bool
|
||||||
|
}
|
||||||
|
|
||||||
|
func (h *HealthHandler) SetHealthy(healthy bool) {
|
||||||
|
h.healthy = healthy
|
||||||
|
}
|
||||||
|
|
||||||
|
func (h *HealthHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||||
|
if !h.healthy {
|
||||||
|
w.WriteHeader(http.StatusServiceUnavailable)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
}
|
||||||
|
|
||||||
|
// The backend is considered alive so long as there have been recent
|
||||||
|
// head changes. Being alive doesn't mean we are up to date, just moving.
|
||||||
|
func NewLiveHandler(api lapi.FullNode) *HealthHandler {
|
||||||
|
ctx := context.Background()
|
||||||
|
h := HealthHandler{}
|
||||||
|
go func() {
|
||||||
|
const reset = 5
|
||||||
|
var countdown = 0
|
||||||
|
minutely := time.NewTicker(time.Minute)
|
||||||
|
headCh, err := api.ChainNotify(ctx)
|
||||||
|
if err != nil {
|
||||||
|
//TODO
|
||||||
|
}
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-minutely.C:
|
||||||
|
countdown = countdown - 1
|
||||||
|
if countdown == 0 {
|
||||||
|
h.SetHealthy(false)
|
||||||
|
}
|
||||||
|
case <-headCh:
|
||||||
|
countdown = reset
|
||||||
|
h.SetHealthy(true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
return &h
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if we are ready to handle traffic.
|
||||||
|
// 1. sync workers are caught up.
|
||||||
|
// 2
|
||||||
|
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
|
||||||
|
}
|
@ -114,6 +114,8 @@ func FullNodeHandler(a v1api.FullNode, permissioned bool, opts ...jsonrpc.Server
|
|||||||
m.Handle("/debug/pprof-set/mutex", handleFractionOpt("MutexProfileFraction", func(x int) {
|
m.Handle("/debug/pprof-set/mutex", handleFractionOpt("MutexProfileFraction", func(x int) {
|
||||||
runtime.SetMutexProfileFraction(x)
|
runtime.SetMutexProfileFraction(x)
|
||||||
}))
|
}))
|
||||||
|
m.Handle("/health/livez", NewLiveHandler(a))
|
||||||
|
m.Handle("/health/readyz", NewReadyHandler(a))
|
||||||
m.PathPrefix("/").Handler(http.DefaultServeMux) // pprof
|
m.PathPrefix("/").Handler(http.DefaultServeMux) // pprof
|
||||||
|
|
||||||
return m, nil
|
return m, nil
|
||||||
|
Loading…
Reference in New Issue
Block a user