aboutsummaryrefslogtreecommitdiffstats
path: root/internal/debug/api.go
Commit message (Collapse)AuthorAgeFilesLines
* internal/debug: use pprof goroutine writer for debug_stacks (#16892)Ryan Schneider2018-06-141-3/+4
| | | | | | | | | | | | * debug: Use pprof goroutine writer in debug.Stacks() to ensure all goroutines are captured. * Up to 64MB limit, previous code only captured first 1MB of goroutines. * internal/debug: simplify stacks handler * fix typo * fix pointer receiver
* internal/debug: add support for mutex profiles (#16230)Felix Lange2018-03-031-4/+23
|
* internal/debug: add debug_setGCPercentFelix Lange2017-09-111-0/+6
|
* internal/debug: add debug_freeOSMemory (#15122)Felix Lange2017-09-111-0/+5
|
* all: update light logs (and a few others) to the new modelPéter Szilágyi2017-03-031-4/+3
|
* all: blidly swap out glog to our log15, logs need reworkPéter Szilágyi2017-02-231-15/+14
|
* internal/debug: also rename debug_startTrace to debug_startGoTraceFelix Lange2016-05-061-3/+3
| | | | This was missing from the previous change.
* internal/debug: rename debug_trace to debug_goTraceFelix Lange2016-05-061-2/+2
| | | | Reduces confusion with EVM execution tracing methods.
* internal/debug: add memStats and gcStats to APIFelix Lange2016-04-131-0/+15
|
* internal/debug: APIs for profiling and tracingFelix Lange2016-01-281-0/+192
The debug package provides an RPC wrapper for glog settings and the debugging facilities of the Go runtime. They can be triggered through both command line flags and the IPC listener.