mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 09:26:54 +00:00
8 lines
202 B
Go
8 lines
202 B
Go
package profile_test
|
|
|
|
import "github.com/pkg/profile"
|
|
|
|
func ExampleTraceProfile() {
|
|
// use execution tracing, rather than the default cpu profiling.
|
|
defer profile.Start(profile.TraceProfile).Stop()
|
|
}
|