CountAggregator

com.netflix.atlas.core.model.TimeSeries.CountAggregator
class CountAggregator(val start: Long, val end: Long) extends Aggregator

Aggregation that computes the number of time series that have a value for a given interval.

Attributes

Graph
Supertypes
trait Aggregator
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

override 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

Definition Classes
override def result(): TimeSeries

Returns the aggregated time series.

Returns the aggregated time series.

Attributes

Definition Classes
override def update(t: TimeSeries): Unit

Update the aggregation with another time series.

Update the aggregation with another time series.

Attributes

Definition Classes

Concrete fields

val end: Long

End of bounded range.

End of bounded range.

Attributes

val start: Long

Start of bounded range.

Start of bounded range.

Attributes