5b4c149f97
This adds an option to direct log output to a file. This feature has been requested a lot. It's sometimes useful to have this available when running geth in an environment that doesn't easily allow redirecting the output. Notably, there is no support for log rotation with this change. The --log.file option opens the file once on startup and then keeps writing to the file handle. This can become an issue when external log rotation tools are involved, so it's best not to use them with this option for now.
245 lines
6.8 KiB
Go
245 lines
6.8 KiB
Go
// Copyright 2016 The go-ethereum Authors
|
|
// This file is part of the go-ethereum library.
|
|
//
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package debug
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
_ "net/http/pprof" // nolint: gosec
|
|
"os"
|
|
"runtime"
|
|
|
|
"github.com/ethereum/go-ethereum/internal/flags"
|
|
"github.com/ethereum/go-ethereum/log"
|
|
"github.com/ethereum/go-ethereum/metrics"
|
|
"github.com/ethereum/go-ethereum/metrics/exp"
|
|
"github.com/fjl/memsize/memsizeui"
|
|
"github.com/mattn/go-colorable"
|
|
"github.com/mattn/go-isatty"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
var Memsize memsizeui.Handler
|
|
|
|
var (
|
|
verbosityFlag = &cli.IntFlag{
|
|
Name: "verbosity",
|
|
Usage: "Logging verbosity: 0=silent, 1=error, 2=warn, 3=info, 4=debug, 5=detail",
|
|
Value: 3,
|
|
Category: flags.LoggingCategory,
|
|
}
|
|
vmoduleFlag = &cli.StringFlag{
|
|
Name: "vmodule",
|
|
Usage: "Per-module verbosity: comma-separated list of <pattern>=<level> (e.g. eth/*=5,p2p=4)",
|
|
Value: "",
|
|
Category: flags.LoggingCategory,
|
|
}
|
|
logjsonFlag = &cli.BoolFlag{
|
|
Name: "log.json",
|
|
Usage: "Format logs with JSON",
|
|
Category: flags.LoggingCategory,
|
|
}
|
|
logFileFlag = &cli.StringFlag{
|
|
Name: "log.file",
|
|
Usage: "Write logs to a file",
|
|
Category: flags.LoggingCategory,
|
|
}
|
|
backtraceAtFlag = &cli.StringFlag{
|
|
Name: "log.backtrace",
|
|
Usage: "Request a stack trace at a specific logging statement (e.g. \"block.go:271\")",
|
|
Value: "",
|
|
Category: flags.LoggingCategory,
|
|
}
|
|
debugFlag = &cli.BoolFlag{
|
|
Name: "log.debug",
|
|
Usage: "Prepends log messages with call-site location (file and line number)",
|
|
Category: flags.LoggingCategory,
|
|
}
|
|
pprofFlag = &cli.BoolFlag{
|
|
Name: "pprof",
|
|
Usage: "Enable the pprof HTTP server",
|
|
Category: flags.LoggingCategory,
|
|
}
|
|
pprofPortFlag = &cli.IntFlag{
|
|
Name: "pprof.port",
|
|
Usage: "pprof HTTP server listening port",
|
|
Value: 6060,
|
|
Category: flags.LoggingCategory,
|
|
}
|
|
pprofAddrFlag = &cli.StringFlag{
|
|
Name: "pprof.addr",
|
|
Usage: "pprof HTTP server listening interface",
|
|
Value: "127.0.0.1",
|
|
Category: flags.LoggingCategory,
|
|
}
|
|
memprofilerateFlag = &cli.IntFlag{
|
|
Name: "pprof.memprofilerate",
|
|
Usage: "Turn on memory profiling with the given rate",
|
|
Value: runtime.MemProfileRate,
|
|
Category: flags.LoggingCategory,
|
|
}
|
|
blockprofilerateFlag = &cli.IntFlag{
|
|
Name: "pprof.blockprofilerate",
|
|
Usage: "Turn on block profiling with the given rate",
|
|
Category: flags.LoggingCategory,
|
|
}
|
|
cpuprofileFlag = &cli.StringFlag{
|
|
Name: "pprof.cpuprofile",
|
|
Usage: "Write CPU profile to the given file",
|
|
Category: flags.LoggingCategory,
|
|
}
|
|
traceFlag = &cli.StringFlag{
|
|
Name: "trace",
|
|
Usage: "Write execution trace to the given file",
|
|
Category: flags.LoggingCategory,
|
|
}
|
|
)
|
|
|
|
// Flags holds all command-line flags required for debugging.
|
|
var Flags = []cli.Flag{
|
|
verbosityFlag,
|
|
vmoduleFlag,
|
|
logjsonFlag,
|
|
logFileFlag,
|
|
backtraceAtFlag,
|
|
debugFlag,
|
|
pprofFlag,
|
|
pprofAddrFlag,
|
|
pprofPortFlag,
|
|
memprofilerateFlag,
|
|
blockprofilerateFlag,
|
|
cpuprofileFlag,
|
|
traceFlag,
|
|
}
|
|
|
|
var (
|
|
glogger *log.GlogHandler
|
|
logOutputStream log.Handler
|
|
)
|
|
|
|
func init() {
|
|
glogger = log.NewGlogHandler(log.StreamHandler(os.Stderr, log.TerminalFormat(false)))
|
|
glogger.Verbosity(log.LvlInfo)
|
|
log.Root().SetHandler(glogger)
|
|
}
|
|
|
|
// Setup initializes profiling and logging based on the CLI flags.
|
|
// It should be called as early as possible in the program.
|
|
func Setup(ctx *cli.Context) error {
|
|
logFile := ctx.String(logFileFlag.Name)
|
|
useColor := logFile == "" && os.Getenv("TERM") != "dumb" && (isatty.IsTerminal(os.Stderr.Fd()) || isatty.IsCygwinTerminal(os.Stderr.Fd()))
|
|
|
|
var logfmt log.Format
|
|
if ctx.Bool(logjsonFlag.Name) {
|
|
logfmt = log.JSONFormat()
|
|
} else {
|
|
logfmt = log.TerminalFormat(useColor)
|
|
}
|
|
|
|
if logFile != "" {
|
|
var err error
|
|
logOutputStream, err = log.FileHandler(logFile, logfmt)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
output := io.Writer(os.Stderr)
|
|
if useColor {
|
|
output = colorable.NewColorableStderr()
|
|
}
|
|
logOutputStream = log.StreamHandler(output, logfmt)
|
|
}
|
|
glogger.SetHandler(logOutputStream)
|
|
|
|
// logging
|
|
verbosity := ctx.Int(verbosityFlag.Name)
|
|
glogger.Verbosity(log.Lvl(verbosity))
|
|
vmodule := ctx.String(vmoduleFlag.Name)
|
|
glogger.Vmodule(vmodule)
|
|
|
|
debug := ctx.Bool(debugFlag.Name)
|
|
if ctx.IsSet(debugFlag.Name) {
|
|
debug = ctx.Bool(debugFlag.Name)
|
|
}
|
|
log.PrintOrigins(debug)
|
|
|
|
backtrace := ctx.String(backtraceAtFlag.Name)
|
|
glogger.BacktraceAt(backtrace)
|
|
|
|
log.Root().SetHandler(glogger)
|
|
|
|
// profiling, tracing
|
|
runtime.MemProfileRate = memprofilerateFlag.Value
|
|
if ctx.IsSet(memprofilerateFlag.Name) {
|
|
runtime.MemProfileRate = ctx.Int(memprofilerateFlag.Name)
|
|
}
|
|
|
|
blockProfileRate := ctx.Int(blockprofilerateFlag.Name)
|
|
Handler.SetBlockProfileRate(blockProfileRate)
|
|
|
|
if traceFile := ctx.String(traceFlag.Name); traceFile != "" {
|
|
if err := Handler.StartGoTrace(traceFile); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
if cpuFile := ctx.String(cpuprofileFlag.Name); cpuFile != "" {
|
|
if err := Handler.StartCPUProfile(cpuFile); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
// pprof server
|
|
if ctx.Bool(pprofFlag.Name) {
|
|
listenHost := ctx.String(pprofAddrFlag.Name)
|
|
|
|
port := ctx.Int(pprofPortFlag.Name)
|
|
|
|
address := fmt.Sprintf("%s:%d", listenHost, port)
|
|
// This context value ("metrics.addr") represents the utils.MetricsHTTPFlag.Name.
|
|
// It cannot be imported because it will cause a cyclical dependency.
|
|
StartPProf(address, !ctx.IsSet("metrics.addr"))
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func StartPProf(address string, withMetrics bool) {
|
|
// Hook go-metrics into expvar on any /debug/metrics request, load all vars
|
|
// from the registry into expvar, and execute regular expvar handler.
|
|
if withMetrics {
|
|
exp.Exp(metrics.DefaultRegistry)
|
|
}
|
|
http.Handle("/memsize/", http.StripPrefix("/memsize", &Memsize))
|
|
log.Info("Starting pprof server", "addr", fmt.Sprintf("http://%s/debug/pprof", address))
|
|
go func() {
|
|
if err := http.ListenAndServe(address, nil); err != nil {
|
|
log.Error("Failure in running pprof server", "err", err)
|
|
}
|
|
}()
|
|
}
|
|
|
|
// Exit stops all running profiles, flushing their output to the
|
|
// respective file.
|
|
func Exit() {
|
|
Handler.StopCPUProfile()
|
|
Handler.StopGoTrace()
|
|
if closer, ok := logOutputStream.(io.Closer); ok {
|
|
closer.Close()
|
|
}
|
|
}
|