-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update command constructor and enable profiling
- Loading branch information
Showing
5 changed files
with
176 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
package cmd | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"os/signal" | ||
"runtime" | ||
"runtime/pprof" | ||
|
||
"github.com/spf13/pflag" | ||
) | ||
|
||
var ( | ||
profileName string | ||
profileOutput string | ||
) | ||
|
||
func addProfilingFlags(flags *pflag.FlagSet) { | ||
flags.StringVar(&profileName, "profile", "none", "Name of profile to capture. One of (none|cpu|heap|goroutine|threadcreate|block|mutex)") | ||
flags.StringVar(&profileOutput, "profile-output", "profile.pprof", "Name of the file to write the profile to") | ||
} | ||
|
||
func initProfiling() error { | ||
var ( | ||
f *os.File | ||
err error | ||
) | ||
switch profileName { | ||
case "none": | ||
return nil | ||
case "cpu": | ||
f, err = os.Create(profileOutput) | ||
if err != nil { | ||
return err | ||
} | ||
err = pprof.StartCPUProfile(f) | ||
if err != nil { | ||
return err | ||
} | ||
// Block and mutex profiles need a call to Set{Block,Mutex}ProfileRate to | ||
// output anything. We choose to sample all events. | ||
case "block": | ||
runtime.SetBlockProfileRate(1) | ||
case "mutex": | ||
runtime.SetMutexProfileFraction(1) | ||
default: | ||
// Check the profile name is valid. | ||
if profile := pprof.Lookup(profileName); profile == nil { | ||
return fmt.Errorf("unknown profile '%s'", profileName) | ||
} | ||
} | ||
|
||
// If the command is interrupted before the end (ctrl-c), flush the | ||
// profiling files | ||
c := make(chan os.Signal, 1) | ||
signal.Notify(c, os.Interrupt) | ||
go func() { | ||
<-c | ||
f.Close() | ||
flushProfiling() | ||
os.Exit(0) | ||
}() | ||
|
||
return nil | ||
} | ||
|
||
func flushProfiling() error { | ||
switch profileName { | ||
case "none": | ||
return nil | ||
case "cpu": | ||
pprof.StopCPUProfile() | ||
case "heap": | ||
runtime.GC() | ||
fallthrough | ||
default: | ||
profile := pprof.Lookup(profileName) | ||
if profile == nil { | ||
return nil | ||
} | ||
f, err := os.Create(profileOutput) | ||
if err != nil { | ||
return err | ||
} | ||
defer f.Close() | ||
profile.WriteTo(f, 0) | ||
} | ||
|
||
return nil | ||
} |