micro/profiler/profile.go

34 lines
584 B
Go
Raw Normal View History

// Package profiler is for profilers
package profiler
// Profiler interface
type Profiler interface {
// Start the profiler
Start() error
// Stop the profiler
Stop() error
2019-12-08 23:31:16 +03:00
// Name of the profiler
String() string
}
var (
// DefaultProfiler holds the default profiler
DefaultProfiler Profiler = NewProfiler()
)
// Options holds the options for profiler
type Options struct {
// Name to use for the profile
Name string
}
// Option func signature
type Option func(o *Options)
// Name of the profile
func Name(n string) Option {
return func(o *Options) {
o.Name = n
}
}