static SamplingAggregator |
AggregatorFactory.createAverageAggregator(long value,
TimeUnit unit) |
Creates an aggregator that returns the average values for each time period as specified.
|
static SamplingAggregator |
AggregatorFactory.createCountAggregator(long value,
TimeUnit unit) |
Creates an aggregator that returns the count of all values over each time period as specified.
|
static SamplingAggregator |
AggregatorFactory.createDataGapsMarkingAggregator(long value,
TimeUnit unit) |
Creates an aggregator that marks gaps in data according to sampling rate with a null data point.
|
static SamplingAggregator |
AggregatorFactory.createFirstAggregator(long value,
TimeUnit unit) |
Creates an aggregator that returns the first data point for the time range.
|
static SamplingAggregator |
AggregatorFactory.createLastAggregator(long value,
TimeUnit unit) |
Creates an aggregator that returns the last data point for the time range.
|
static SamplingAggregator |
AggregatorFactory.createLeastSquaresAggregator(long value,
TimeUnit unit) |
Creates an aggregator that returns a best fit line through the datapoints using the least squares algorithm..
|
static SamplingAggregator |
AggregatorFactory.createMaxAggregator(long value,
TimeUnit unit) |
Creates an aggregator that returns the maximum values for each time period as specified.
|
static SamplingAggregator |
AggregatorFactory.createMinAggregator(long value,
TimeUnit unit) |
Creates an aggregator that returns the minimum values for each time period as specified.
|
static SamplingAggregator |
AggregatorFactory.createStandardDeviationAggregator(long value,
TimeUnit unit) |
Creates an aggregator that returns the standard deviation values for each time period as specified.
|
static SamplingAggregator |
AggregatorFactory.createSumAggregator(long value,
TimeUnit unit) |
Creates an aggregator that returns the sum of all values over each time period as specified.
|