Documentation ¶
Overview ¶
Package max contains functions for calculating the maximum value observed over a sliding window.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type TimeWindow ¶
type TimeWindow struct {
// contains filtered or unexported fields
}
TimeWindow is a descending minima window whose indexes are calculated based on time.Time values.
func NewTimeWindow ¶
func NewTimeWindow(duration, granularity time.Duration) *TimeWindow
NewTimeWindow creates a new TimeWindow.
func (*TimeWindow) Current ¶
func (t *TimeWindow) Current() int32
Current returns the current maximum value observed in the previous window duration.
Click to show internal directories.
Click to hide internal directories.