-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add profiling flags (based on kubectl) (#862)
Signed-off-by: Praveen Rewar <8457124+praveenrewar@users.noreply.github.com>
- Loading branch information
1 parent
b240f25
commit 75e9565
Showing
2 changed files
with
101 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
// Copyright 2023 VMware, Inc. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
package cmd | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"os/signal" | ||
"runtime" | ||
"runtime/pprof" | ||
|
||
"github.com/spf13/cobra" | ||
cmdcore "github.com/vmware-tanzu/carvel-kapp/pkg/kapp/cmd/core" | ||
) | ||
|
||
type ProfilingFlags struct { | ||
profileName string | ||
profileOutput string | ||
} | ||
|
||
func (p *ProfilingFlags) Set(cmd *cobra.Command, _ cmdcore.FlagsFactory) { | ||
cmd.PersistentFlags().StringVar(&p.profileName, "profile", "none", "Name of profile to capture. One of (none|cpu|heap|goroutine|threadcreate|block|mutex)") | ||
cmd.PersistentFlags().StringVar(&p.profileOutput, "profile-output", "profile.pprof", "Name of the file to write the profile to") | ||
} | ||
|
||
func (p *ProfilingFlags) initProfiling() error { | ||
var ( | ||
f *os.File | ||
err error | ||
) | ||
switch p.profileName { | ||
case "none": | ||
return nil | ||
case "cpu": | ||
f, err = os.Create(p.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(p.profileName); profile == nil { | ||
return fmt.Errorf("unknown profile '%s'", p.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() | ||
p.flushProfiling() | ||
os.Exit(0) | ||
}() | ||
|
||
return nil | ||
} | ||
|
||
func (p *ProfilingFlags) flushProfiling() error { | ||
switch p.profileName { | ||
case "none": | ||
return nil | ||
case "cpu": | ||
pprof.StopCPUProfile() | ||
case "heap": | ||
runtime.GC() | ||
fallthrough | ||
default: | ||
profile := pprof.Lookup(p.profileName) | ||
if profile == nil { | ||
return nil | ||
} | ||
f, err := os.Create(p.profileOutput) | ||
if err != nil { | ||
return err | ||
} | ||
defer f.Close() | ||
return profile.WriteTo(f, 0) | ||
} | ||
|
||
return nil | ||
} |