9 lines
202 B
Go
Raw Normal View History

2021-11-08 16:39:17 +00:00
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()
}