mirror of https://github.com/EasyDarwin/EasyDarwin
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.8 KiB
67 lines
1.8 KiB
package rotatelogs
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/lestrrat-go/file-rotatelogs/internal/option"
|
|
)
|
|
|
|
const (
|
|
optkeyClock = "clock"
|
|
optkeyLinkName = "link-name"
|
|
optkeyMaxAge = "max-age"
|
|
optkeyRotationTime = "rotation-time"
|
|
optkeyRotationCount = "rotation-count"
|
|
)
|
|
|
|
// WithClock creates a new Option that sets a clock
|
|
// that the RotateLogs object will use to determine
|
|
// the current time.
|
|
//
|
|
// By default rotatelogs.Local, which returns the
|
|
// current time in the local time zone, is used. If you
|
|
// would rather use UTC, use rotatelogs.UTC as the argument
|
|
// to this option, and pass it to the constructor.
|
|
func WithClock(c Clock) Option {
|
|
return option.New(optkeyClock, c)
|
|
}
|
|
|
|
// WithLocation creates a new Option that sets up a
|
|
// "Clock" interface that the RotateLogs object will use
|
|
// to determine the current time.
|
|
//
|
|
// This optin works by always returning the in the given
|
|
// location.
|
|
func WithLocation(loc *time.Location) Option {
|
|
return option.New(optkeyClock, clockFn(func() time.Time {
|
|
return time.Now().In(loc)
|
|
}))
|
|
}
|
|
|
|
// WithLinkName creates a new Option that sets the
|
|
// symbolic link name that gets linked to the current
|
|
// file name being used.
|
|
func WithLinkName(s string) Option {
|
|
return option.New(optkeyLinkName, s)
|
|
}
|
|
|
|
// WithMaxAge creates a new Option that sets the
|
|
// max age of a log file before it gets purged from
|
|
// the file system.
|
|
func WithMaxAge(d time.Duration) Option {
|
|
return option.New(optkeyMaxAge, d)
|
|
}
|
|
|
|
// WithRotationTime creates a new Option that sets the
|
|
// time between rotation.
|
|
func WithRotationTime(d time.Duration) Option {
|
|
return option.New(optkeyRotationTime, d)
|
|
}
|
|
|
|
// WithRotationCount creates a new Option that sets the
|
|
// number of files should be kept before it gets
|
|
// purged from the file system.
|
|
func WithRotationCount(n uint) Option {
|
|
return option.New(optkeyRotationCount, n)
|
|
}
|