aggregator

package
v0.9.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 15, 2017 License: BSD-2-Clause-Views Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func GetProcessorConstructor added in v0.9.3

func GetProcessorConstructor(fun string) (func(val float64, ts uint32) Processor, error)

func SetLogger

func SetLogger(l *logging.Logger)

Types

type Aggregator

type Aggregator struct {
	Fun string `json:"fun"`

	Regex  string `json:"regex,omitempty"`
	Prefix string `json:"prefix,omitempty"`
	Sub    string `json:"substring,omitempty"`

	OutFmt string

	Cache bool

	Interval uint // expected interval between values in seconds, we will quantize to make sure alginment to interval-spaced timestamps
	Wait     uint // seconds to wait after quantized time value before flushing final outcome and ignoring future values that are sent too late.
	// contains filtered or unexported fields
}

func New

func New(fun, regex, prefix, sub, outFmt string, cache bool, interval, wait uint, out chan []byte) (*Aggregator, error)

New creates an aggregator

func NewMocked added in v0.9.3

func NewMocked(fun, regex, prefix, sub, outFmt string, cache bool, interval, wait uint, out chan []byte, inBuf int, now func() time.Time, tick <-chan time.Time) (*Aggregator, error)

func (*Aggregator) AddMaybe added in v0.9.3

func (a *Aggregator) AddMaybe(buf [][]byte, val float64, ts uint32)

func (*Aggregator) AddOrCreate

func (a *Aggregator) AddOrCreate(key string, ts uint32, quantized uint, value float64)

func (*Aggregator) Flush

func (a *Aggregator) Flush(ts uint)

Flush finalizes and removes aggregations that are due

func (*Aggregator) PreMatch

func (a *Aggregator) PreMatch(buf []byte) bool

PreMatch checks if the specified metric matches the specified prefix and/or substring If prefix isn't explicitly specified it will be derived from the regex where possible. If this returns false the metric will not be passed through to the main regex matching stage.

func (*Aggregator) Shutdown

func (a *Aggregator) Shutdown()

func (*Aggregator) Snapshot

func (a *Aggregator) Snapshot() *Aggregator

to view the state of the aggregator at any point in time

type Avg

type Avg struct {
	// contains filtered or unexported fields
}

Avg aggregates to average

func (*Avg) Add added in v0.9.3

func (a *Avg) Add(val float64, ts uint32)

func (*Avg) Flush added in v0.9.3

func (a *Avg) Flush() (float64, bool)

type CacheEntry added in v0.9.3

type CacheEntry struct {
	// contains filtered or unexported fields
}

type Delta added in v0.9.0

type Delta struct {
	// contains filtered or unexported fields
}

Delta aggregates to the difference between highest and lowest value seen

func (*Delta) Add added in v0.9.3

func (d *Delta) Add(val float64, ts uint32)

func (*Delta) Flush added in v0.9.3

func (d *Delta) Flush() (float64, bool)

type Derive added in v0.9.3

type Derive struct {
	// contains filtered or unexported fields
}

Derive aggregates to the derivative of the largest timeframe we get

func (*Derive) Add added in v0.9.3

func (d *Derive) Add(val float64, ts uint32)

func (*Derive) Flush added in v0.9.3

func (d *Derive) Flush() (float64, bool)

type Last added in v0.9.0

type Last struct {
	// contains filtered or unexported fields
}

Last aggregates to the last value seen

func (*Last) Add added in v0.9.3

func (l *Last) Add(val float64, ts uint32)

func (*Last) Flush added in v0.9.3

func (l *Last) Flush() (float64, bool)

type Max

type Max struct {
	// contains filtered or unexported fields
}

Max aggregates to the highest value seen

func (*Max) Add added in v0.9.3

func (m *Max) Add(val float64, ts uint32)

func (*Max) Flush added in v0.9.3

func (m *Max) Flush() (float64, bool)

type Min

type Min struct {
	// contains filtered or unexported fields
}

Min aggregates to the lowest value seen

func (*Min) Add added in v0.9.3

func (m *Min) Add(val float64, ts uint32)

func (*Min) Flush added in v0.9.3

func (m *Min) Flush() (float64, bool)

type Processor added in v0.9.3

type Processor interface {
	// Add adds a point to aggregate
	Add(val float64, ts uint32)
	// Flush returns the aggregated value and true if it is valid
	// the only reason why it would be non-valid is for aggregators that need
	// more than 1 value but they didn't have enough to produce a useful result.
	Flush() (float64, bool)
}

func NewAvg added in v0.9.3

func NewAvg(val float64, ts uint32) Processor

func NewDelta added in v0.9.3

func NewDelta(val float64, ts uint32) Processor

func NewDerive added in v0.9.3

func NewDerive(val float64, ts uint32) Processor

func NewLast added in v0.9.3

func NewLast(val float64, ts uint32) Processor

func NewMax added in v0.9.3

func NewMax(val float64, ts uint32) Processor

func NewMin added in v0.9.3

func NewMin(val float64, ts uint32) Processor

func NewStdev added in v0.9.3

func NewStdev(val float64, ts uint32) Processor

func NewSum added in v0.9.3

func NewSum(val float64, ts uint32) Processor

type Stdev added in v0.9.0

type Stdev struct {
	// contains filtered or unexported fields
}

Stdev aggregates to standard deviation

func (*Stdev) Add added in v0.9.3

func (s *Stdev) Add(val float64, ts uint32)

func (*Stdev) Flush added in v0.9.3

func (s *Stdev) Flush() (float64, bool)

type Sum

type Sum struct {
	// contains filtered or unexported fields
}

Sum aggregates to average

func (*Sum) Add added in v0.9.3

func (s *Sum) Add(val float64, ts uint32)

func (*Sum) Flush added in v0.9.3

func (s *Sum) Flush() (float64, bool)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL