Class RollupJobConfig

java.lang.Object
org.elasticsearch.client.rollup.job.config.RollupJobConfig
All Implemented Interfaces:
Validatable, org.elasticsearch.xcontent.ToXContent, org.elasticsearch.xcontent.ToXContentObject

public class RollupJobConfig extends Object implements Validatable, org.elasticsearch.xcontent.ToXContentObject
This class holds the configuration details of a rollup job, such as the groupings, metrics, what index to rollup and where to roll them to.
  • Constructor Details

  • Method Details

    • validate

      public Optional<ValidationException> validate()
      Description copied from interface: Validatable
      Perform 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. A ValidationException that is not null is assumed to contain validation errors and will be thrown.
      Specified by:
      validate in interface Validatable
      Returns:
      An Optional ValidationException that contains a list of validation errors.
    • getId

      public String getId()
    • getGroupConfig

      public GroupConfig getGroupConfig()
    • getMetricsConfig

      public List<MetricConfig> getMetricsConfig()
    • getTimeout

      public org.elasticsearch.core.TimeValue getTimeout()
    • getIndexPattern

      public String getIndexPattern()
    • getRollupIndex

      public String getRollupIndex()
    • getCron

      public String getCron()
    • getPageSize

      public int getPageSize()
    • toXContent

      public org.elasticsearch.xcontent.XContentBuilder toXContent(org.elasticsearch.xcontent.XContentBuilder builder, org.elasticsearch.xcontent.ToXContent.Params params) throws IOException
      Specified by:
      toXContent in interface org.elasticsearch.xcontent.ToXContent
      Throws:
      IOException
    • equals

      public boolean equals(Object other)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • fromXContent

      public static RollupJobConfig fromXContent(org.elasticsearch.xcontent.XContentParser parser, @Nullable String optionalJobId) throws IOException
      Throws:
      IOException