2020-05-15 21:54:53 +00:00
|
|
|
// Package debug defines a gRPC server implementation of a debugging service
|
|
|
|
// which allows for helpful endpoints to debug a beacon node at runtime, this server is
|
|
|
|
// gated behind the feature flag --enable-debug-rpc-endpoints.
|
|
|
|
package debug
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
gethlog "github.com/ethereum/go-ethereum/log"
|
|
|
|
ptypes "github.com/gogo/protobuf/types"
|
2020-05-31 06:44:34 +00:00
|
|
|
golog "github.com/ipfs/go-log/v2"
|
2020-05-15 21:54:53 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/blockchain"
|
2020-05-21 01:36:05 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/db"
|
2020-06-19 18:25:47 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/p2p"
|
2020-05-15 21:54:53 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/state/stategen"
|
|
|
|
pbrpc "github.com/prysmaticlabs/prysm/proto/beacon/rpc/v1"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"google.golang.org/grpc/codes"
|
|
|
|
"google.golang.org/grpc/status"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Server defines a server implementation of the gRPC Debug service,
|
|
|
|
// providing RPC endpoints for runtime debugging of a node, this server is
|
|
|
|
// gated behind the feature flag --enable-debug-rpc-endpoints.
|
|
|
|
type Server struct {
|
2020-05-21 01:36:05 +00:00
|
|
|
BeaconDB db.NoHeadAccessDatabase
|
2020-05-15 21:54:53 +00:00
|
|
|
GenesisTimeFetcher blockchain.TimeFetcher
|
|
|
|
StateGen *stategen.State
|
2020-05-26 23:24:38 +00:00
|
|
|
HeadFetcher blockchain.HeadFetcher
|
2020-06-19 18:25:47 +00:00
|
|
|
PeerManager p2p.PeerManager
|
|
|
|
PeersFetcher p2p.PeersProvider
|
2020-05-15 21:54:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetLoggingLevel of a beacon node according to a request type,
|
|
|
|
// either INFO, DEBUG, or TRACE.
|
|
|
|
func (ds *Server) SetLoggingLevel(ctx context.Context, req *pbrpc.LoggingLevelRequest) (*ptypes.Empty, error) {
|
|
|
|
var verbosity string
|
|
|
|
switch req.Level {
|
|
|
|
case pbrpc.LoggingLevelRequest_INFO:
|
|
|
|
verbosity = "info"
|
|
|
|
case pbrpc.LoggingLevelRequest_DEBUG:
|
|
|
|
verbosity = "debug"
|
|
|
|
case pbrpc.LoggingLevelRequest_TRACE:
|
|
|
|
verbosity = "trace"
|
|
|
|
default:
|
|
|
|
return nil, status.Error(codes.InvalidArgument, "Expected valid verbosity level as argument")
|
|
|
|
}
|
|
|
|
level, err := logrus.ParseLevel(verbosity)
|
|
|
|
if err != nil {
|
|
|
|
return nil, status.Error(codes.Internal, "Could not parse verbosity level")
|
|
|
|
}
|
|
|
|
logrus.SetLevel(level)
|
|
|
|
if level == logrus.TraceLevel {
|
|
|
|
// Libp2p specific logging.
|
2020-05-31 06:44:34 +00:00
|
|
|
golog.SetAllLoggers(golog.LevelDebug)
|
2020-05-15 21:54:53 +00:00
|
|
|
// Geth specific logging.
|
|
|
|
glogger := gethlog.NewGlogHandler(gethlog.StreamHandler(os.Stderr, gethlog.TerminalFormat(true)))
|
|
|
|
glogger.Verbosity(gethlog.LvlTrace)
|
|
|
|
gethlog.Root().SetHandler(glogger)
|
|
|
|
}
|
|
|
|
return &ptypes.Empty{}, nil
|
|
|
|
}
|