Class DateHistogramValuesSourceBuilder
java.lang.Object
org.elasticsearch.search.aggregations.bucket.composite.CompositeValuesSourceBuilder<DateHistogramValuesSourceBuilder>
org.elasticsearch.search.aggregations.bucket.composite.DateHistogramValuesSourceBuilder
- All Implemented Interfaces:
Writeable
,org.elasticsearch.common.xcontent.ToXContent
,org.elasticsearch.common.xcontent.ToXContentFragment
,DateIntervalConsumer
public class DateHistogramValuesSourceBuilder
extends CompositeValuesSourceBuilder<DateHistogramValuesSourceBuilder>
implements DateIntervalConsumer
A
CompositeValuesSourceBuilder
that builds a RoundingValuesSource
from a Script
or
a field name using the provided interval.-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
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 inherited from class org.elasticsearch.search.aggregations.bucket.composite.CompositeValuesSourceBuilder
name
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
Constructor Summary
ModifierConstructorDescriptionprotected
-
Method Summary
Modifier and TypeMethodDescriptioncalendarInterval(DateHistogramInterval interval)
Sets the interval of the DateHistogram using calendar units (`1d`, `1w`, `1M`, etc).Deprecated.dateHistogramInterval(DateHistogramInterval interval)
Deprecated.protected void
doXContentBody(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)
boolean
fixedInterval(DateHistogramInterval interval)
Sets the interval of the DateHistogram using fixed units (`1ms`, `1s`, `10m`, `4h`, etc).protected ValuesSourceType
Return the interval as a date time unit if applicable, regardless of how it was configured.Get the interval as aTimeValue
, regardless of how it was configured.int
hashCode()
protected CompositeValuesSourceConfig
innerBuild(ValuesSourceRegistry registry, ValuesSourceConfig config)
Actually build the values source and its associated configuration.protected void
innerWriteTo(StreamOutput out)
long
interval()
Deprecated.interval(long interval)
Deprecated.long
offset()
Get the offset to use when rounding, which is a number of milliseconds.offset(long offset)
Set the offset on this builder, which is a number of milliseconds.static void
register(ValuesSourceRegistry.Builder builder)
timeZone()
Gets the time zone to use for this aggregationSets the time zone to use for this aggregationtype()
Methods inherited from class org.elasticsearch.search.aggregations.bucket.composite.CompositeValuesSourceBuilder
build, field, field, format, format, missingBucket, missingBucket, name, order, order, order, script, script, toXContent, userValuetypeHint, userValuetypeHint, writeTo
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentFragment
isFragment
-
Constructor Details
-
DateHistogramValuesSourceBuilder
-
DateHistogramValuesSourceBuilder
- Throws:
IOException
-
-
Method Details
-
innerWriteTo
- Specified by:
innerWriteTo
in classCompositeValuesSourceBuilder<DateHistogramValuesSourceBuilder>
- Throws:
IOException
-
doXContentBody
protected void doXContentBody(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws IOException- Specified by:
doXContentBody
in classCompositeValuesSourceBuilder<DateHistogramValuesSourceBuilder>
- Throws:
IOException
-
hashCode
public int hashCode()- Overrides:
hashCode
in classCompositeValuesSourceBuilder<DateHistogramValuesSourceBuilder>
-
equals
- Overrides:
equals
in classCompositeValuesSourceBuilder<DateHistogramValuesSourceBuilder>
-
type
-
interval
Deprecated.Returns the interval in milliseconds that is set on this source- Specified by:
interval
in interfaceDateIntervalConsumer
-
interval
Deprecated.Sets the interval on this source. If bothinterval()
anddateHistogramInterval()
are set, then thedateHistogramInterval()
wins.- Specified by:
interval
in interfaceDateIntervalConsumer
- Since:
- 7.2.0
-
dateHistogramInterval
Deprecated.Returns the date interval that is set on this source- Specified by:
dateHistogramInterval
in interfaceDateIntervalConsumer
-
dateHistogramInterval
@Deprecated public DateHistogramValuesSourceBuilder dateHistogramInterval(DateHistogramInterval interval)Deprecated.- Specified by:
dateHistogramInterval
in interfaceDateIntervalConsumer
- Since:
- 7.2.0
-
calendarInterval
Sets the interval of the DateHistogram using calendar units (`1d`, `1w`, `1M`, etc). These units are calendar-aware, meaning they respect leap additions, variable days per month, etc. This is mutually exclusive withfixedInterval(DateHistogramInterval)
- Specified by:
calendarInterval
in interfaceDateIntervalConsumer
- Parameters:
interval
- The calendar interval to use with the aggregation
-
fixedInterval
Sets the interval of the DateHistogram using fixed units (`1ms`, `1s`, `10m`, `4h`, etc). These are not calendar aware and are simply multiples of fixed, SI units. This is mutually exclusive withcalendarInterval(DateHistogramInterval)
- Specified by:
fixedInterval
in interfaceDateIntervalConsumer
- Parameters:
interval
- The fixed interval to use with the aggregation
-
getIntervalAsCalendar
Return the interval as a date time unit if applicable, regardless of how it was configured. If this returnsnull
then it means that the interval is expressed as a fixedTimeValue
and may be accessed viagetIntervalAsFixed()
()}. -
getIntervalAsFixed
Get the interval as aTimeValue
, regardless of how it was configured. Returns null if the interval cannot be parsed as a fixed time. -
timeZone
Sets the time zone to use for this aggregation -
timeZone
Gets the time zone to use for this aggregation- Overrides:
timeZone
in classCompositeValuesSourceBuilder<DateHistogramValuesSourceBuilder>
-
offset
public long offset()Get the offset to use when rounding, which is a number of milliseconds. -
offset
Set the offset on this builder, which is a number of milliseconds.- Returns:
- this for chaining
-
register
-
getDefaultValuesSourceType
- Specified by:
getDefaultValuesSourceType
in classCompositeValuesSourceBuilder<DateHistogramValuesSourceBuilder>
-
innerBuild
protected CompositeValuesSourceConfig innerBuild(ValuesSourceRegistry registry, ValuesSourceConfig config) throws IOExceptionDescription copied from class:CompositeValuesSourceBuilder
Actually build the values source and its associated configuration.- Specified by:
innerBuild
in classCompositeValuesSourceBuilder<DateHistogramValuesSourceBuilder>
- Throws:
IOException
-
calendarInterval(DateHistogramInterval)
orfixedInterval(DateHistogramInterval)
instead