github.com/bcskill/bcschain/v3@v3.4.9-beta2/internal/debug/flags.go (about)

     1  // Copyright 2016 The go-ethereum Authors
     2  // This file is part of the go-ethereum library.
     3  //
     4  // The go-ethereum library is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU Lesser General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     9  // The go-ethereum library is distributed in the hope that it will be useful,
    10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  // GNU Lesser General Public License for more details.
    13  //
    14  // You should have received a copy of the GNU Lesser General Public License
    15  // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  package debug
    18  
    19  import (
    20  	"fmt"
    21  	"io"
    22  	"net/http"
    23  	_ "net/http/pprof"
    24  	"os"
    25  	"runtime"
    26  
    27  	"github.com/fjl/memsize/memsizeui"
    28  	"github.com/bcskill/bcschain/v3/log"
    29  	"github.com/bcskill/bcschain/v3/log/term"
    30  	"github.com/bcskill/bcschain/v3/metrics"
    31  	"github.com/bcskill/bcschain/v3/metrics/exp"
    32  	"github.com/mattn/go-colorable"
    33  	"github.com/urfave/cli"
    34  )
    35  
    36  var Memsize memsizeui.Handler
    37  
    38  var (
    39  	verbosityFlag = cli.IntFlag{
    40  		Name:  "verbosity",
    41  		Usage: "Logging verbosity: 0=silent, 1=error, 2=warn, 3=info, 4=debug, 5=detail",
    42  		Value: 3,
    43  	}
    44  	vmoduleFlag = cli.StringFlag{
    45  		Name:  "vmodule",
    46  		Usage: "Per-module verbosity: comma-separated list of <pattern>=<level> (e.g. eth/*=5,p2p=4)",
    47  		Value: "",
    48  	}
    49  	backtraceAtFlag = cli.StringFlag{
    50  		Name:  "backtrace",
    51  		Usage: "Request a stack trace at a specific logging statement (e.g. \"block.go:271\")",
    52  		Value: "",
    53  	}
    54  	debugFlag = cli.BoolFlag{
    55  		Name:  "debug",
    56  		Usage: "Prepends log messages with call-site location (file and line number)",
    57  	}
    58  	pprofFlag = cli.BoolFlag{
    59  		Name:  "pprof",
    60  		Usage: "Enable the pprof HTTP server",
    61  	}
    62  	pprofPortFlag = cli.IntFlag{
    63  		Name:  "pprofport",
    64  		Usage: "pprof HTTP server listening port",
    65  		Value: 6060,
    66  	}
    67  	pprofAddrFlag = cli.StringFlag{
    68  		Name:  "pprofaddr",
    69  		Usage: "pprof HTTP server listening interface",
    70  		Value: "127.0.0.1",
    71  	}
    72  	memprofilerateFlag = cli.IntFlag{
    73  		Name:  "memprofilerate",
    74  		Usage: "Turn on memory profiling with the given rate",
    75  		Value: runtime.MemProfileRate,
    76  	}
    77  	blockprofilerateFlag = cli.IntFlag{
    78  		Name:  "blockprofilerate",
    79  		Usage: "Turn on block profiling with the given rate",
    80  	}
    81  	mutexProfileFractionFlag = cli.IntFlag{
    82  		Name:  "mutexprofilefraction",
    83  		Usage: "Turn on mutex profiling with the given fraction",
    84  	}
    85  	cpuprofileFlag = cli.StringFlag{
    86  		Name:  "cpuprofile",
    87  		Usage: "Write CPU profile to the given file",
    88  	}
    89  	traceFlag = cli.StringFlag{
    90  		Name:  "trace",
    91  		Usage: "Write execution trace to the given file",
    92  	}
    93  	stackdriverLogging = cli.BoolFlag{
    94  		Name:  "logging.stackdriver",
    95  		Usage: "Use stackdriver log format (JSON with specific key names).",
    96  	}
    97  )
    98  
    99  // Flags holds all command-line flags required for debugging.
   100  var Flags = []cli.Flag{
   101  	verbosityFlag, vmoduleFlag, backtraceAtFlag, debugFlag,
   102  	pprofFlag, pprofAddrFlag, pprofPortFlag,
   103  	memprofilerateFlag, cpuprofileFlag, traceFlag,
   104  	blockprofilerateFlag, mutexProfileFractionFlag,
   105  	stackdriverLogging,
   106  }
   107  
   108  var glogger *log.GlogHandler
   109  
   110  func init() {
   111  	usecolor := term.IsTty(os.Stderr.Fd()) && os.Getenv("TERM") != "dumb"
   112  	output := io.Writer(os.Stderr)
   113  	if usecolor {
   114  		output = colorable.NewColorableStderr()
   115  	}
   116  	glogger = log.NewGlogHandler(log.StreamHandler(output, log.TerminalFormat(usecolor)))
   117  }
   118  
   119  // Setup initializes profiling and logging based on the CLI flags.
   120  // It should be called as early as possible in the program.
   121  func Setup(ctx *cli.Context) error {
   122  	// logging
   123  	log.PrintOrigins(ctx.GlobalBool(debugFlag.Name))
   124  	if ctx.GlobalBool(stackdriverLogging.Name) {
   125  		glogger = log.NewGlogHandler(log.StreamHandler(os.Stderr, log.StackdriverFormat()))
   126  	}
   127  	glogger.Verbosity(log.Lvl(ctx.GlobalInt(verbosityFlag.Name)))
   128  	glogger.Vmodule(ctx.GlobalString(vmoduleFlag.Name))
   129  	glogger.BacktraceAt(ctx.GlobalString(backtraceAtFlag.Name))
   130  	log.Root().SetHandler(glogger)
   131  
   132  	// profiling, tracing
   133  	runtime.MemProfileRate = ctx.GlobalInt(memprofilerateFlag.Name)
   134  	Handler.SetBlockProfileRate(ctx.GlobalInt(blockprofilerateFlag.Name))
   135  	if traceFile := ctx.GlobalString(traceFlag.Name); traceFile != "" {
   136  		if err := Handler.StartGoTrace(traceFile); err != nil {
   137  			return err
   138  		}
   139  	}
   140  	if cpuFile := ctx.GlobalString(cpuprofileFlag.Name); cpuFile != "" {
   141  		if err := Handler.StartCPUProfile(cpuFile); err != nil {
   142  			return err
   143  		}
   144  	}
   145  
   146  	// pprof server
   147  	if ctx.GlobalBool(pprofFlag.Name) {
   148  		runtime.SetBlockProfileRate(ctx.GlobalInt(blockprofilerateFlag.Name))
   149  		runtime.SetMutexProfileFraction(ctx.GlobalInt(mutexProfileFractionFlag.Name))
   150  
   151  		address := fmt.Sprintf("%s:%d", ctx.GlobalString(pprofAddrFlag.Name), ctx.GlobalInt(pprofPortFlag.Name))
   152  		StartPProf(address)
   153  	}
   154  	return nil
   155  }
   156  
   157  func StartPProf(address string) {
   158  	// Hook go-metrics into expvar on any /debug/metrics request, load all vars
   159  	// from the registry into expvar, and execute regular expvar handler.
   160  	exp.Exp(metrics.DefaultRegistry)
   161  	http.Handle("/memsize/", http.StripPrefix("/memsize", &Memsize))
   162  	log.Info("Starting pprof server", "addr", fmt.Sprintf("http://%s/debug/pprof", address))
   163  	go func() {
   164  		if err := http.ListenAndServe(address, nil); err != nil {
   165  			log.Error("Failure in running pprof server", "err", err)
   166  		}
   167  	}()
   168  }
   169  
   170  // Exit stops all running profiles, flushing their output to the
   171  // respective file.
   172  func Exit() {
   173  	Handler.StopCPUProfile()
   174  	Handler.StopGoTrace()
   175  }