Class MovAvgPipelineAggregationBuilder
java.lang.Object
org.elasticsearch.search.aggregations.PipelineAggregationBuilder
org.elasticsearch.search.aggregations.pipeline.AbstractPipelineAggregationBuilder<MovAvgPipelineAggregationBuilder>
org.elasticsearch.search.aggregations.pipeline.MovAvgPipelineAggregationBuilder
- All Implemented Interfaces:
NamedWriteable
,Writeable
,org.elasticsearch.common.xcontent.ToXContent
,org.elasticsearch.common.xcontent.ToXContentFragment
,Rewriteable<PipelineAggregationBuilder>
,BaseAggregationBuilder
public class MovAvgPipelineAggregationBuilder extends AbstractPipelineAggregationBuilder<MovAvgPipelineAggregationBuilder>
-
Nested Class Summary
Nested classes/interfaces inherited from class org.elasticsearch.search.aggregations.PipelineAggregationBuilder
PipelineAggregationBuilder.ValidationContext
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.common.xcontent.ToXContent.MapParams, org.elasticsearch.common.xcontent.ToXContent.Params
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
NAME
static org.elasticsearch.common.ParseField
SETTINGS
Fields inherited from class org.elasticsearch.search.aggregations.pipeline.AbstractPipelineAggregationBuilder
BUCKETS_PATH_FIELD, metadata, type
Fields inherited from class org.elasticsearch.search.aggregations.PipelineAggregationBuilder
bucketsPaths, name
-
Constructor Summary
Constructors Constructor Description MovAvgPipelineAggregationBuilder(java.lang.String name, java.lang.String bucketsPath)
MovAvgPipelineAggregationBuilder(StreamInput in)
Read from a stream. -
Method Summary
Modifier and Type Method Description protected PipelineAggregator
createInternal(java.util.Map<java.lang.String,java.lang.Object> metadata)
protected void
doWriteTo(StreamOutput out)
boolean
equals(java.lang.Object obj)
java.lang.String
format()
Gets the format to use on the output of this aggregation.MovAvgPipelineAggregationBuilder
format(java.lang.String format)
Sets the format to use on the output of this aggregation.protected DocValueFormat
formatter()
BucketHelpers.GapPolicy
gapPolicy()
Gets the GapPolicy to use on the output of this aggregation.MovAvgPipelineAggregationBuilder
gapPolicy(BucketHelpers.GapPolicy gapPolicy)
Sets the GapPolicy to use on the output of this aggregation.java.lang.String
getWriteableName()
Returns the name of the writeable objectint
hashCode()
protected org.elasticsearch.common.xcontent.XContentBuilder
internalXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)
java.lang.Boolean
minimize()
Gets whether the model should be fit to the data using a cost minimizing algorithm.MovAvgPipelineAggregationBuilder
minimize(boolean minimize)
Sets whether the model should be fit to the data using a cost minimizing algorithm.MovAvgModel
model()
Gets a MovAvgModel for the Moving Average.MovAvgPipelineAggregationBuilder
model(MovAvgModel model)
Sets a MovAvgModel for the Moving Average.MovAvgPipelineAggregationBuilder
modelBuilder(MovAvgModelBuilder model)
Sets a MovAvgModel for the Moving Average.static MovAvgPipelineAggregationBuilder
parse(ParseFieldRegistry<MovAvgModel.AbstractModelParser> movingAverageMdelParserRegistry, java.lang.String pipelineAggregatorName, org.elasticsearch.common.xcontent.XContentParser parser)
int
predict()
Gets the number of predictions that should be returned.MovAvgPipelineAggregationBuilder
predict(int predict)
Sets the number of predictions that should be returned.protected void
validate(PipelineAggregationBuilder.ValidationContext context)
Makes sure this builder is properly configured.int
window()
Gets the window size for the moving average.MovAvgPipelineAggregationBuilder
window(int window)
Sets the window size for the moving average.Methods inherited from class org.elasticsearch.search.aggregations.pipeline.AbstractPipelineAggregationBuilder
create, getType, overrideBucketsPath, setMetadata, toXContent, type, writeTo
Methods inherited from class org.elasticsearch.search.aggregations.PipelineAggregationBuilder
getBucketsPaths, getName, rewrite, subAggregations, toString
-
Field Details
-
NAME
public static final java.lang.String NAME- See Also:
- Constant Field Values
-
SETTINGS
public static final org.elasticsearch.common.ParseField SETTINGS
-
-
Constructor Details
-
MovAvgPipelineAggregationBuilder
public MovAvgPipelineAggregationBuilder(java.lang.String name, java.lang.String bucketsPath) -
MovAvgPipelineAggregationBuilder
Read from a stream.- Throws:
java.io.IOException
-
-
Method Details
-
doWriteTo
- Specified by:
doWriteTo
in classAbstractPipelineAggregationBuilder<MovAvgPipelineAggregationBuilder>
- Throws:
java.io.IOException
-
format
Sets the format to use on the output of this aggregation. -
format
public java.lang.String format()Gets the format to use on the output of this aggregation. -
gapPolicy
Sets the GapPolicy to use on the output of this aggregation. -
gapPolicy
Gets the GapPolicy to use on the output of this aggregation. -
formatter
-
window
Sets the window size for the moving average. This window will "slide" across the series, and the values inside that window will be used to calculate the moving avg value- Parameters:
window
- Size of window
-
window
public int window()Gets the window size for the moving average. This window will "slide" across the series, and the values inside that window will be used to calculate the moving avg value -
modelBuilder
Sets a MovAvgModel for the Moving Average. The model is used to define what type of moving average you want to use on the series- Parameters:
model
- A MovAvgModel which has been prepopulated with settings
-
model
Sets a MovAvgModel for the Moving Average. The model is used to define what type of moving average you want to use on the series- Parameters:
model
- A MovAvgModel which has been prepopulated with settings
-
model
Gets a MovAvgModel for the Moving Average. The model is used to define what type of moving average you want to use on the series -
predict
Sets the number of predictions that should be returned. Each prediction will be spaced at the intervals specified in the histogram. E.g "predict: 2" will return two new buckets at the end of the histogram with the predicted values.- Parameters:
predict
- Number of predictions to make
-
predict
public int predict()Gets the number of predictions that should be returned. Each prediction will be spaced at the intervals specified in the histogram. E.g "predict: 2" will return two new buckets at the end of the histogram with the predicted values. -
minimize
Sets whether the model should be fit to the data using a cost minimizing algorithm.- Parameters:
minimize
- If the model should be fit to the underlying data
-
minimize
public java.lang.Boolean minimize()Gets whether the model should be fit to the data using a cost minimizing algorithm. -
createInternal
protected PipelineAggregator createInternal(java.util.Map<java.lang.String,java.lang.Object> metadata)- Specified by:
createInternal
in classAbstractPipelineAggregationBuilder<MovAvgPipelineAggregationBuilder>
-
validate
Description copied from class:PipelineAggregationBuilder
Makes sure this builder is properly configured.- Specified by:
validate
in classPipelineAggregationBuilder
-
internalXContent
protected org.elasticsearch.common.xcontent.XContentBuilder internalXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws java.io.IOException- Specified by:
internalXContent
in classAbstractPipelineAggregationBuilder<MovAvgPipelineAggregationBuilder>
- Throws:
java.io.IOException
-
parse
public static MovAvgPipelineAggregationBuilder parse(ParseFieldRegistry<MovAvgModel.AbstractModelParser> movingAverageMdelParserRegistry, java.lang.String pipelineAggregatorName, org.elasticsearch.common.xcontent.XContentParser parser) throws java.io.IOException- Throws:
java.io.IOException
-
hashCode
public int hashCode()- Overrides:
hashCode
in classAbstractPipelineAggregationBuilder<MovAvgPipelineAggregationBuilder>
-
equals
public boolean equals(java.lang.Object obj)- Overrides:
equals
in classAbstractPipelineAggregationBuilder<MovAvgPipelineAggregationBuilder>
-
getWriteableName
public java.lang.String getWriteableName()Description copied from interface:NamedWriteable
Returns the name of the writeable object
-