Skip to content

Commit a2a23d9

Browse files
committed
enhance: support specific duration for profile collection
The default duration of cpu profile collection in net/http/pprof is 30 seconds. User should have chance to set the specific duration for the collection. Signed-off-by: Wei Fu <[email protected]>
1 parent ac01f20 commit a2a23d9

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

cmd/ctr/commands/pprof/pprof.go

+9-1
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,18 @@ var pprofHeapCommand = cli.Command{
8989
var pprofProfileCommand = cli.Command{
9090
Name: "profile",
9191
Usage: "CPU profile",
92+
Flags: []cli.Flag{
93+
cli.DurationFlag{
94+
Name: "seconds,s",
95+
Usage: "duration for collection (seconds)",
96+
Value: 30 * time.Second,
97+
},
98+
},
9299
Action: func(context *cli.Context) error {
93100
client := getPProfClient(context)
94101

95-
output, err := httpGetRequest(client, "/debug/pprof/profile")
102+
seconds := context.Duration("seconds").Seconds()
103+
output, err := httpGetRequest(client, fmt.Sprintf("/debug/pprof/profile?seconds=%v", seconds))
96104
if err != nil {
97105
return err
98106
}

0 commit comments

Comments
 (0)