[lbry] profile: support fgprof (flame graph)

This commit is contained in:
Brannon King 2021-07-06 19:42:57 -07:00 committed by Roy Lee
parent 31d3d9debc
commit dba1eb7261

View file

@ -18,6 +18,8 @@ import (
"github.com/btcsuite/btcd/blockchain/indexers"
"github.com/btcsuite/btcd/database"
"github.com/btcsuite/btcd/limits"
"github.com/felixge/fgprof"
)
const (
@ -65,6 +67,7 @@ func btcdMain(serverChan chan<- *server) error {
// Enable http profiling server if requested.
if cfg.Profile != "" {
http.DefaultServeMux.Handle("/debug/fgprof", fgprof.Handler())
go func() {
listenAddr := net.JoinHostPort("", cfg.Profile)
btcdLog.Infof("Profile server listening on %s", listenAddr)