Class DateHistogramGroupConfig
- java.lang.Object
-
- org.elasticsearch.client.rollup.job.config.DateHistogramGroupConfig
-
- All Implemented Interfaces:
Validatable,ToXContent,ToXContentObject
- Direct Known Subclasses:
DateHistogramGroupConfig.CalendarInterval,DateHistogramGroupConfig.FixedInterval
public class DateHistogramGroupConfig extends Object implements Validatable, ToXContentObject
The configuration object for the histograms in the rollup config { "groups": [ "date_histogram": { "field" : "foo", "interval" : "1d", "delay": "30d", "time_zone" : "EST" } ] }
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDateHistogramGroupConfig.CalendarIntervalCalendarInterval is aDateHistogramGroupConfigthat uses calendar-aware intervals for rolling up data.static classDateHistogramGroupConfig.FixedIntervalFixedInterval is aDateHistogramGroupConfigthat uses a fixed time interval for rolling up data.-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
-
Field Summary
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
Fields inherited from interface org.elasticsearch.client.Validatable
EMPTY
-
-
Constructor Summary
Constructors Constructor Description DateHistogramGroupConfig(String field, DateHistogramInterval interval)Deprecated.Build a DateHistoConfig usingDateHistogramGroupConfig.CalendarIntervalorDateHistogramGroupConfig.FixedIntervalinsteadDateHistogramGroupConfig(String field, DateHistogramInterval interval, DateHistogramInterval delay, String timeZone)Deprecated.Build a DateHistoConfig usingDateHistogramGroupConfig.CalendarIntervalorDateHistogramGroupConfig.FixedIntervalinstead
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object other)static DateHistogramGroupConfigfromXContent(XContentParser parser)DateHistogramIntervalgetDelay()Get the time delay for this histogramStringgetField()Get the date fieldDateHistogramIntervalgetInterval()Get the date intervalStringgetTimeZone()Get the timezone to applyinthashCode()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)Optional<ValidationException>validate()Perform validation.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
-
-
-
Constructor Detail
-
DateHistogramGroupConfig
@Deprecated public DateHistogramGroupConfig(String field, DateHistogramInterval interval)
Deprecated.Build a DateHistoConfig usingDateHistogramGroupConfig.CalendarIntervalorDateHistogramGroupConfig.FixedIntervalinsteadCreate a newDateHistogramGroupConfigusing the given field and interval parameters.- Since:
- 7.2.0
-
DateHistogramGroupConfig
@Deprecated public DateHistogramGroupConfig(String field, DateHistogramInterval interval, @Nullable DateHistogramInterval delay, @Nullable String timeZone)
Deprecated.Build a DateHistoConfig usingDateHistogramGroupConfig.CalendarIntervalorDateHistogramGroupConfig.FixedIntervalinsteadCreate a newDateHistogramGroupConfigusing the given configuration parameters.The
fieldandintervalare required to compute the date histogram for the rolled up documents. Thedelayis optional and can be set tonull. It defines how long to wait before rolling up new documents. ThetimeZoneis optional and can be set tonull. When configured, the time zone value is resolved using (DateTimeZone.forID(String)and must match a time zone identifier provided by the Joda Time library.- Parameters:
field- the name of the date field to use for the date histogram (required)interval- the interval to use for the date histogram (required)delay- the time delay (optional)timeZone- the id of time zone to use to calculate the date histogram (optional). Whennull, the UTC timezone is used.- Since:
- 7.2.0
-
-
Method Detail
-
validate
public Optional<ValidationException> validate()
Description copied from interface:ValidatablePerform validation. This method does not have to be overridden in the event that no validation needs to be done, or the validation was done during object construction time. AValidationExceptionthat is not null is assumed to contain validation errors and will be thrown.- Specified by:
validatein interfaceValidatable- Returns:
- An
OptionalValidationExceptionthat contains a list of validation errors.
-
getField
public String getField()
Get the date field
-
getInterval
public DateHistogramInterval getInterval()
Get the date interval
-
getDelay
public DateHistogramInterval getDelay()
Get the time delay for this histogram
-
getTimeZone
public String getTimeZone()
Get the timezone to apply
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
IOException
-
fromXContent
public static DateHistogramGroupConfig fromXContent(XContentParser parser) throws IOException
- Throws:
IOException
-
-