cli: pprof goroutines command
This commit is contained in:
parent
1898b82dc4
commit
7595b1d8d4
@ -238,6 +238,7 @@ var CommonCommands = []*cli.Command{
|
|||||||
logCmd,
|
logCmd,
|
||||||
waitApiCmd,
|
waitApiCmd,
|
||||||
fetchParamCmd,
|
fetchParamCmd,
|
||||||
|
pprofCmd,
|
||||||
VersionCmd,
|
VersionCmd,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -256,6 +257,7 @@ var Commands = []*cli.Command{
|
|||||||
WithCategory("developer", fetchParamCmd),
|
WithCategory("developer", fetchParamCmd),
|
||||||
WithCategory("network", netCmd),
|
WithCategory("network", netCmd),
|
||||||
WithCategory("network", syncCmd),
|
WithCategory("network", syncCmd),
|
||||||
|
pprofCmd,
|
||||||
VersionCmd,
|
VersionCmd,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
59
cli/pprof.go
Normal file
59
cli/pprof.go
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
package cli
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io"
|
||||||
|
"net/http"
|
||||||
|
"os"
|
||||||
|
|
||||||
|
"github.com/urfave/cli/v2"
|
||||||
|
"golang.org/x/xerrors"
|
||||||
|
|
||||||
|
"github.com/filecoin-project/lotus/node/repo"
|
||||||
|
manet "github.com/multiformats/go-multiaddr-net"
|
||||||
|
)
|
||||||
|
|
||||||
|
var pprofCmd = &cli.Command{
|
||||||
|
Name: "pprof",
|
||||||
|
Hidden: true,
|
||||||
|
Subcommands: []*cli.Command{
|
||||||
|
PprofGoroutines,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
var PprofGoroutines = &cli.Command{
|
||||||
|
Name: "goroutines",
|
||||||
|
Usage: "Get goroutine stacks",
|
||||||
|
Action: func(cctx *cli.Context) error {
|
||||||
|
ti, ok := cctx.App.Metadata["repoType"]
|
||||||
|
if !ok {
|
||||||
|
log.Errorf("unknown repo type, are you sure you want to use GetAPI?")
|
||||||
|
ti = repo.FullNode
|
||||||
|
}
|
||||||
|
t, ok := ti.(repo.RepoType)
|
||||||
|
if !ok {
|
||||||
|
log.Errorf("repoType type does not match the type of repo.RepoType")
|
||||||
|
}
|
||||||
|
ainfo, err := GetAPIInfo(cctx, t)
|
||||||
|
if err != nil {
|
||||||
|
return xerrors.Errorf("could not get API info: %w", err)
|
||||||
|
}
|
||||||
|
_, addr, err := manet.DialArgs(ainfo.Addr)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
addr = "http://" + addr + "/debug/pprof/goroutine?debug=2"
|
||||||
|
|
||||||
|
r, err := http.Get(addr)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if _, err := io.Copy(os.Stdout, r.Body); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return r.Body.Close()
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
@ -148,6 +148,11 @@ var infoAllCmd = &cli.Command{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fmt.Println("\n#: Goroutines")
|
||||||
|
if err := lcli.PprofGoroutines.Action(cctx); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user