Aggregator

com.netflix.atlas.core.model.TimeSeries.Aggregator
trait Aggregator

Base type for aggregators that can be used to combine a set of time series using some aggregation function. The aggregation is performed in-place on the buffer so it requires a bounded time range.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Members list

Value members

Abstract methods

def end: Long

End of bounded range.

End of bounded range.

Attributes

def isEmpty: Boolean

Check if the aggregation is empty, that is no time series have been added.

Check if the aggregation is empty, that is no time series have been added.

Attributes

Returns the aggregated time series.

Returns the aggregated time series.

Attributes

def start: Long

Start of bounded range.

Start of bounded range.

Attributes

def update(t: TimeSeries): Unit

Update the aggregation with another time series.

Update the aggregation with another time series.

Attributes