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 PercentileAggregator |
AggregatorFactory.createPercentileAggregator(double percentile,
long value,
TimeUnit unit) |
Creates an aggregator that returns the percentile value for a given percentage of all values over each time period as specified.
|
static RateAggregator |
AggregatorFactory.createRateAggregator(TimeUnit unit) |
Creates an aggregator that returns the rate of change between each pair of data points
|
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.
|
B |
AbstractQueryBuilder.setEnd(int duration,
TimeUnit unit) |
The ending time of the time range relative to now.
|
B |
AbstractQueryBuilder.setStart(int duration,
TimeUnit unit) |
The beginning time of the time range relative to now.
|