| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | // 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" | 
					
						
							| 
									
										
										
										
											2017-02-23 19:31:13 +01:00
										 |  |  | 	"io" | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | 	"net/http" | 
					
						
							|  |  |  | 	_ "net/http/pprof" | 
					
						
							| 
									
										
										
										
											2017-02-22 14:10:07 +02:00
										 |  |  | 	"os" | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | 	"runtime" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-22 14:10:07 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/log" | 
					
						
							| 
									
										
										
										
											2018-02-23 10:56:08 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/metrics" | 
					
						
							|  |  |  | 	"github.com/ethereum/go-ethereum/metrics/exp" | 
					
						
							| 
									
										
										
										
											2018-04-23 15:20:39 +02:00
										 |  |  | 	"github.com/fjl/memsize/memsizeui" | 
					
						
							| 
									
										
										
										
											2017-02-23 19:31:13 +01:00
										 |  |  | 	colorable "github.com/mattn/go-colorable" | 
					
						
							| 
									
										
										
										
											2018-09-29 23:15:39 +09:00
										 |  |  | 	"github.com/mattn/go-isatty" | 
					
						
							| 
									
										
										
										
											2016-06-09 11:44:42 +02:00
										 |  |  | 	"gopkg.in/urfave/cli.v1" | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-23 15:20:39 +02:00
										 |  |  | var Memsize memsizeui.Handler | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | var ( | 
					
						
							| 
									
										
										
										
											2017-02-22 14:10:07 +02:00
										 |  |  | 	verbosityFlag = cli.IntFlag{ | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | 		Name:  "verbosity", | 
					
						
							| 
									
										
										
										
											2017-02-23 11:44:16 +02:00
										 |  |  | 		Usage: "Logging verbosity: 0=silent, 1=error, 2=warn, 3=info, 4=debug, 5=detail", | 
					
						
							| 
									
										
										
										
											2017-02-22 14:10:07 +02:00
										 |  |  | 		Value: 3, | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-02-22 14:10:07 +02:00
										 |  |  | 	vmoduleFlag = cli.StringFlag{ | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | 		Name:  "vmodule", | 
					
						
							| 
									
										
										
										
											2017-02-23 11:44:16 +02:00
										 |  |  | 		Usage: "Per-module verbosity: comma-separated list of <pattern>=<level> (e.g. eth/*=5,p2p=4)", | 
					
						
							| 
									
										
										
										
											2017-02-22 14:10:07 +02:00
										 |  |  | 		Value: "", | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-02-22 14:10:07 +02:00
										 |  |  | 	backtraceAtFlag = cli.StringFlag{ | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | 		Name:  "backtrace", | 
					
						
							|  |  |  | 		Usage: "Request a stack trace at a specific logging statement (e.g. \"block.go:271\")", | 
					
						
							| 
									
										
										
										
											2017-02-22 14:10:07 +02:00
										 |  |  | 		Value: "", | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-02-23 11:44:16 +02:00
										 |  |  | 	debugFlag = cli.BoolFlag{ | 
					
						
							|  |  |  | 		Name:  "debug", | 
					
						
							|  |  |  | 		Usage: "Prepends log messages with call-site location (file and line number)", | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | 	pprofFlag = cli.BoolFlag{ | 
					
						
							|  |  |  | 		Name:  "pprof", | 
					
						
							|  |  |  | 		Usage: "Enable the pprof HTTP server", | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	pprofPortFlag = cli.IntFlag{ | 
					
						
							|  |  |  | 		Name:  "pprofport", | 
					
						
							|  |  |  | 		Usage: "pprof HTTP server listening port", | 
					
						
							|  |  |  | 		Value: 6060, | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-10-14 08:22:31 +01:00
										 |  |  | 	pprofAddrFlag = cli.StringFlag{ | 
					
						
							| 
									
										
										
										
											2016-11-01 17:23:24 +08:00
										 |  |  | 		Name:  "pprofaddr", | 
					
						
							| 
									
										
										
										
											2016-10-14 08:22:31 +01:00
										 |  |  | 		Usage: "pprof HTTP server listening interface", | 
					
						
							|  |  |  | 		Value: "127.0.0.1", | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | 	memprofilerateFlag = cli.IntFlag{ | 
					
						
							|  |  |  | 		Name:  "memprofilerate", | 
					
						
							|  |  |  | 		Usage: "Turn on memory profiling with the given rate", | 
					
						
							| 
									
										
										
										
											2016-03-12 00:36:15 +01:00
										 |  |  | 		Value: runtime.MemProfileRate, | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	blockprofilerateFlag = cli.IntFlag{ | 
					
						
							|  |  |  | 		Name:  "blockprofilerate", | 
					
						
							|  |  |  | 		Usage: "Turn on block profiling with the given rate", | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	cpuprofileFlag = cli.StringFlag{ | 
					
						
							|  |  |  | 		Name:  "cpuprofile", | 
					
						
							|  |  |  | 		Usage: "Write CPU profile to the given file", | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	traceFlag = cli.StringFlag{ | 
					
						
							|  |  |  | 		Name:  "trace", | 
					
						
							|  |  |  | 		Usage: "Write execution trace to the given file", | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Flags holds all command-line flags required for debugging. | 
					
						
							|  |  |  | var Flags = []cli.Flag{ | 
					
						
							| 
									
										
										
										
											2017-02-23 11:44:16 +02:00
										 |  |  | 	verbosityFlag, vmoduleFlag, backtraceAtFlag, debugFlag, | 
					
						
							| 
									
										
										
										
											2016-10-14 08:22:31 +01:00
										 |  |  | 	pprofFlag, pprofAddrFlag, pprofPortFlag, | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | 	memprofilerateFlag, blockprofilerateFlag, cpuprofileFlag, traceFlag, | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
											
												cmd, dashboard, log: log collection and exploration (#17097)
* cmd, dashboard, internal, log, node: logging feature
* cmd, dashboard, internal, log: requested changes
* dashboard, vendor: gofmt, govendor, use vendored file watcher
* dashboard, log: gofmt -s -w, goimports
* dashboard, log: gosimple
											
										 
											2018-07-11 10:59:04 +03:00
										 |  |  | var ( | 
					
						
							|  |  |  | 	ostream log.Handler | 
					
						
							|  |  |  | 	glogger *log.GlogHandler | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2017-02-23 19:31:13 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | func init() { | 
					
						
							| 
									
										
										
										
											2018-09-29 23:15:39 +09:00
										 |  |  | 	usecolor := (isatty.IsTerminal(os.Stderr.Fd()) || isatty.IsCygwinTerminal(os.Stderr.Fd())) && os.Getenv("TERM") != "dumb" | 
					
						
							| 
									
										
										
										
											2017-02-23 19:31:13 +01:00
										 |  |  | 	output := io.Writer(os.Stderr) | 
					
						
							|  |  |  | 	if usecolor { | 
					
						
							|  |  |  | 		output = colorable.NewColorableStderr() | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
											
												cmd, dashboard, log: log collection and exploration (#17097)
* cmd, dashboard, internal, log, node: logging feature
* cmd, dashboard, internal, log: requested changes
* dashboard, vendor: gofmt, govendor, use vendored file watcher
* dashboard, log: gofmt -s -w, goimports
* dashboard, log: gosimple
											
										 
											2018-07-11 10:59:04 +03:00
										 |  |  | 	ostream = log.StreamHandler(output, log.TerminalFormat(usecolor)) | 
					
						
							|  |  |  | 	glogger = log.NewGlogHandler(ostream) | 
					
						
							| 
									
										
										
										
											2017-02-23 19:31:13 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-02-22 14:10:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | // Setup initializes profiling and logging based on the CLI flags. | 
					
						
							|  |  |  | // It should be called as early as possible in the program. | 
					
						
							| 
									
										
										
											
												cmd, dashboard, log: log collection and exploration (#17097)
* cmd, dashboard, internal, log, node: logging feature
* cmd, dashboard, internal, log: requested changes
* dashboard, vendor: gofmt, govendor, use vendored file watcher
* dashboard, log: gofmt -s -w, goimports
* dashboard, log: gosimple
											
										 
											2018-07-11 10:59:04 +03:00
										 |  |  | func Setup(ctx *cli.Context, logdir string) error { | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | 	// logging | 
					
						
							| 
									
										
										
										
											2017-02-23 11:44:16 +02:00
										 |  |  | 	log.PrintOrigins(ctx.GlobalBool(debugFlag.Name)) | 
					
						
							| 
									
										
										
											
												cmd, dashboard, log: log collection and exploration (#17097)
* cmd, dashboard, internal, log, node: logging feature
* cmd, dashboard, internal, log: requested changes
* dashboard, vendor: gofmt, govendor, use vendored file watcher
* dashboard, log: gofmt -s -w, goimports
* dashboard, log: gosimple
											
										 
											2018-07-11 10:59:04 +03:00
										 |  |  | 	if logdir != "" { | 
					
						
							|  |  |  | 		rfh, err := log.RotatingFileHandler( | 
					
						
							|  |  |  | 			logdir, | 
					
						
							|  |  |  | 			262144, | 
					
						
							|  |  |  | 			log.JSONFormatOrderedEx(false, true), | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		glogger.SetHandler(log.MultiHandler(ostream, rfh)) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-02-22 14:10:07 +02:00
										 |  |  | 	glogger.Verbosity(log.Lvl(ctx.GlobalInt(verbosityFlag.Name))) | 
					
						
							|  |  |  | 	glogger.Vmodule(ctx.GlobalString(vmoduleFlag.Name)) | 
					
						
							|  |  |  | 	glogger.BacktraceAt(ctx.GlobalString(backtraceAtFlag.Name)) | 
					
						
							|  |  |  | 	log.Root().SetHandler(glogger) | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// profiling, tracing | 
					
						
							|  |  |  | 	runtime.MemProfileRate = ctx.GlobalInt(memprofilerateFlag.Name) | 
					
						
							|  |  |  | 	Handler.SetBlockProfileRate(ctx.GlobalInt(blockprofilerateFlag.Name)) | 
					
						
							|  |  |  | 	if traceFile := ctx.GlobalString(traceFlag.Name); traceFile != "" { | 
					
						
							| 
									
										
										
										
											2016-05-06 11:15:05 +02:00
										 |  |  | 		if err := Handler.StartGoTrace(traceFile); err != nil { | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | 			return err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if cpuFile := ctx.GlobalString(cpuprofileFlag.Name); cpuFile != "" { | 
					
						
							|  |  |  | 		if err := Handler.StartCPUProfile(cpuFile); err != nil { | 
					
						
							|  |  |  | 			return err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// pprof server | 
					
						
							|  |  |  | 	if ctx.GlobalBool(pprofFlag.Name) { | 
					
						
							| 
									
										
										
										
											2016-10-14 08:22:31 +01:00
										 |  |  | 		address := fmt.Sprintf("%s:%d", ctx.GlobalString(pprofAddrFlag.Name), ctx.GlobalInt(pprofPortFlag.Name)) | 
					
						
							| 
									
										
										
										
											2018-04-23 15:20:39 +02:00
										 |  |  | 		StartPProf(address) | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-23 15:20:39 +02:00
										 |  |  | func StartPProf(address string) { | 
					
						
							|  |  |  | 	// Hook go-metrics into expvar on any /debug/metrics request, load all vars | 
					
						
							|  |  |  | 	// from the registry into expvar, and execute regular expvar handler. | 
					
						
							|  |  |  | 	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) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | // Exit stops all running profiles, flushing their output to the | 
					
						
							|  |  |  | // respective file. | 
					
						
							|  |  |  | func Exit() { | 
					
						
							|  |  |  | 	Handler.StopCPUProfile() | 
					
						
							| 
									
										
										
										
											2016-05-06 11:15:05 +02:00
										 |  |  | 	Handler.StopGoTrace() | 
					
						
							| 
									
										
										
										
											2016-01-26 14:39:21 +01:00
										 |  |  | } |