mirror of
https://github.com/elyby/chrly.git
synced 2024-11-16 18:22:58 +05:30
56 lines
1.1 KiB
Go
56 lines
1.1 KiB
Go
// +build profiling
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"runtime/pprof"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
var profilePath string
|
|
RootCmd.PersistentFlags().StringVar(&profilePath, "cpuprofile", "", "enables pprof profiling and sets its output path")
|
|
|
|
pprofEnabled := false
|
|
originalPersistentPreRunE := RootCmd.PersistentPreRunE
|
|
RootCmd.PersistentPreRunE = func(cmd *cobra.Command, args []string) error {
|
|
if profilePath == "" {
|
|
return nil
|
|
}
|
|
|
|
f, err := os.Create(profilePath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
log.Println("enabling profiling")
|
|
err = pprof.StartCPUProfile(f)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
pprofEnabled = true
|
|
|
|
if originalPersistentPreRunE != nil {
|
|
return originalPersistentPreRunE(cmd, args)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
originalPersistentPostRun := RootCmd.PersistentPreRun
|
|
RootCmd.PersistentPostRun = func(cmd *cobra.Command, args []string) {
|
|
if pprofEnabled {
|
|
log.Println("shutting down profiling")
|
|
pprof.StopCPUProfile()
|
|
}
|
|
|
|
if originalPersistentPostRun != nil {
|
|
originalPersistentPostRun(cmd, args)
|
|
}
|
|
}
|
|
}
|