micro/debug/log/options.go

71 lines
1.3 KiB
Go
Raw Normal View History

2019-11-27 19:02:16 +03:00
package log
import "time"
2019-11-27 19:02:16 +03:00
// Option used by the logger
type Option func(*Options)
// Options are logger options
type Options struct {
2019-12-17 18:46:09 +03:00
// Name of the log
Name string
2019-11-27 19:02:16 +03:00
// Size is the size of ring buffer
Size int
2019-12-19 15:20:33 +03:00
// Format specifies the output format
Format FormatFunc
2019-11-27 19:02:16 +03:00
}
2019-12-17 18:46:09 +03:00
// Name of the log
func Name(n string) Option {
return func(o *Options) {
o.Name = n
}
}
2019-11-27 19:02:16 +03:00
// Size sets the size of the ring buffer
func Size(s int) Option {
return func(o *Options) {
o.Size = s
}
}
2019-12-19 15:20:33 +03:00
func Format(f FormatFunc) Option {
return func(o *Options) {
o.Format = f
}
}
2019-11-27 19:02:16 +03:00
// DefaultOptions returns default options
func DefaultOptions() Options {
return Options{
Size: DefaultSize,
}
}
// ReadOptions for querying the logs
type ReadOptions struct {
// Since what time in past to return the logs
Since time.Time
// Count specifies number of logs to return
Count int
// Stream requests continuous log stream
Stream bool
}
// ReadOption used for reading the logs
type ReadOption func(*ReadOptions)
// Since sets the time since which to return the log records
func Since(s time.Time) ReadOption {
return func(o *ReadOptions) {
o.Since = s
}
}
// Count sets the number of log records to return
func Count(c int) ReadOption {
return func(o *ReadOptions) {
o.Count = c
}
}