mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-29 16:13:47 +00:00
* lock, unlock to rlock, runlock * add : tracing Pending() and Locals() * Log time spent in committing a tx during mining * Remove data from logging * Move log into case where a tx completes without error * profile fillTransactions * fix conflict * bug fixes * add logs * txpool: add tracing in Pending() * rearrange tracing * add attributes * fix * fix * log error in profiling * update file mode and file path for profiling * full profiling * fix log * fix log * less wait * fix * fix * logs * worker: use block number for prof files * initial * txList add * fix gas calculation * fix * green tests * linters * prettify * allocate less * no locks between pending and reorg * no locks * no locks on locals * more tests * linters * less allocs * comment * optimize errors * linters * fix * fix * Linters * linters * linters * simplify errors * atomics for transactions * fix * optimize workers * fix copy * linters * txpool tracing * linters * fix tracing * duration in mcs * locks * metrics * fix * cache hit/miss * less locks on evict * remove once * remove once * switch off pprof * fix data race * fix data race * add : sealed total/empty blocks metric gauge * add : RPC debug_getTraceStack * fix : RPC debug_getTraceStack * fix : RPC debug_getTraceStack for all go-routines * linters * add data race test on txpool * fix concurrency * noleak * increase batch size * prettify * tests * baseFee mutex * panic fix * linters * fix gas fee data race * linters * more transactions * debug * debug * fix ticker * fix test * add cacheMu * more tests * fix test panic * linters * add statistics * add statistics * txitems data race * fix tx list Has * fix : lint Co-authored-by: Arpit Temani <temaniarpit27@gmail.com> Co-authored-by: Jerry <jerrycgh@gmail.com> Co-authored-by: Manav Darji <manavdarji.india@gmail.com> Co-authored-by: Evgeny Danienko <6655321@bk.ru>
115 lines
2.6 KiB
Go
115 lines
2.6 KiB
Go
package pprof
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"fmt"
|
|
"runtime"
|
|
"runtime/pprof"
|
|
"runtime/trace"
|
|
"time"
|
|
)
|
|
|
|
// Profile generates a pprof.Profile report for the given profile name.
|
|
func Profile(profile string, debug, gc int) ([]byte, map[string]string, error) {
|
|
p := pprof.Lookup(profile)
|
|
if p == nil {
|
|
return nil, nil, fmt.Errorf("profile '%s' not found", profile)
|
|
}
|
|
|
|
if profile == "heap" && gc > 0 {
|
|
runtime.GC()
|
|
}
|
|
|
|
var buf bytes.Buffer
|
|
if err := p.WriteTo(&buf, debug); err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
headers := map[string]string{
|
|
"X-Content-Type-Options": "nosniff",
|
|
}
|
|
if debug != 0 {
|
|
headers["Content-Type"] = "text/plain; charset=utf-8"
|
|
} else {
|
|
headers["Content-Type"] = "application/octet-stream"
|
|
headers["Content-Disposition"] = fmt.Sprintf(`attachment; filename="%s"`, profile)
|
|
}
|
|
return buf.Bytes(), headers, nil
|
|
}
|
|
|
|
// CPUProfile generates a CPU Profile for a given duration
|
|
func CPUProfile(ctx context.Context, sec int) ([]byte, map[string]string, error) {
|
|
if sec <= 0 {
|
|
sec = 1
|
|
}
|
|
|
|
var buf bytes.Buffer
|
|
if err := pprof.StartCPUProfile(&buf); err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
sleep(ctx, time.Duration(sec)*time.Second)
|
|
|
|
pprof.StopCPUProfile()
|
|
|
|
return buf.Bytes(),
|
|
map[string]string{
|
|
"X-Content-Type-Options": "nosniff",
|
|
"Content-Type": "application/octet-stream",
|
|
"Content-Disposition": `attachment; filename="profile"`,
|
|
}, nil
|
|
}
|
|
|
|
// CPUProfile generates a CPU Profile for a given duration
|
|
func CPUProfileWithChannel(done chan bool) ([]byte, map[string]string, error) {
|
|
var buf bytes.Buffer
|
|
if err := pprof.StartCPUProfile(&buf); err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
select {
|
|
case <-done:
|
|
case <-time.After(30 * time.Second):
|
|
}
|
|
|
|
pprof.StopCPUProfile()
|
|
|
|
return buf.Bytes(),
|
|
map[string]string{
|
|
"X-Content-Type-Options": "nosniff",
|
|
"Content-Type": "application/octet-stream",
|
|
"Content-Disposition": `attachment; filename="profile"`,
|
|
}, nil
|
|
}
|
|
|
|
// Trace runs a trace profile for a given duration
|
|
func Trace(ctx context.Context, sec int) ([]byte, map[string]string, error) {
|
|
if sec <= 0 {
|
|
sec = 1
|
|
}
|
|
|
|
var buf bytes.Buffer
|
|
if err := trace.Start(&buf); err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
sleep(ctx, time.Duration(sec)*time.Second)
|
|
|
|
trace.Stop()
|
|
|
|
return buf.Bytes(),
|
|
map[string]string{
|
|
"X-Content-Type-Options": "nosniff",
|
|
"Content-Type": "application/octet-stream",
|
|
"Content-Disposition": `attachment; filename="trace"`,
|
|
}, nil
|
|
}
|
|
|
|
func sleep(ctx context.Context, d time.Duration) {
|
|
// Sleep until duration is met or ctx is cancelled
|
|
select {
|
|
case <-time.After(d):
|
|
case <-ctx.Done():
|
|
}
|
|
}
|