| Package | Description |
|---|---|
| org.kairosdb.client.builder | |
| org.kairosdb.client.builder.aggregator |
| Modifier and Type | Method and Description |
|---|---|
static SamplingAggregator |
AggregatorFactory.createAverageAggregator(int value,
TimeUnit unit)
Creates an aggregator that returns the average values for each time period as specified.
|
static SamplingAggregator |
AggregatorFactory.createCountAggregator(int value,
TimeUnit unit)
Creates an aggregator that returns the count of all values over each time period as specified.
|
static SamplingAggregator |
AggregatorFactory.createDataGapsMarkingAggregator(int value,
TimeUnit unit)
Creates an aggregator that marks gaps in data according to sampling rate with a null data point.
|
static SamplingAggregator |
AggregatorFactory.createFirstAggregator(int value,
TimeUnit unit)
Creates an aggregator that returns the first data point for the time range.
|
static SamplingAggregator |
AggregatorFactory.createLastAggregator(int value,
TimeUnit unit)
Creates an aggregator that returns the last data point for the time range.
|
static SamplingAggregator |
AggregatorFactory.createLeastSquaresAggregator(int value,
TimeUnit unit)
Creates an aggregator that returns a best fit line through the datapoints using the least squares algorithm..
|
static SamplingAggregator |
AggregatorFactory.createMaxAggregator(int value,
TimeUnit unit)
Creates an aggregator that returns the maximum values for each time period as specified.
|
static SamplingAggregator |
AggregatorFactory.createMinAggregator(int value,
TimeUnit unit)
Creates an aggregator that returns the minimum values for each time period as specified.
|
static SamplingAggregator |
AggregatorFactory.createStandardDeviationAggregator(int value,
TimeUnit unit)
Creates an aggregator that returns the standard deviation values for each time period as specified.
|
static SamplingAggregator |
AggregatorFactory.createSumAggregator(int value,
TimeUnit unit)
Creates an aggregator that returns the sum of all values over each time period as specified.
|
| Modifier and Type | Class and Description |
|---|---|
class |
PercentileAggregator |
| Modifier and Type | Method and Description |
|---|---|
SamplingAggregator |
SamplingAggregator.withAlignment(Boolean alignStartTime,
Boolean alignSampling)
Deprecated.
|
SamplingAggregator |
SamplingAggregator.withSamplingAlignment()
Alignment based on the sampling size.
|
SamplingAggregator |
SamplingAggregator.withStartTimeAlignment()
Alignment based on the aggregation range rather than the value of the first
data point within that range.
|
SamplingAggregator |
SamplingAggregator.withStartTimeAlignment(long startTime)
Alignment that starts based on the specified time.
|
Copyright © 2018. All rights reserved.