Class AnalysisConfigRead

java.lang.Object
co.elastic.clients.elasticsearch.ml.AnalysisConfigRead
All Implemented Interfaces:
JsonpSerializable

@JsonpDeserializable public class AnalysisConfigRead extends Object implements JsonpSerializable
See Also:
  • Field Details

  • Method Details

    • of

    • bucketSpan

      public final Time bucketSpan()
      Required - The size of the interval that the analysis is aggregated into, typically between 5m and 1h.

      API name: bucket_span

    • categorizationAnalyzer

      @Nullable public final CategorizationAnalyzer categorizationAnalyzer()
      If categorization_field_name is specified, you can also define the analyzer that is used to interpret the categorization field. This property cannot be used at the same time as categorization_filters. The categorization analyzer specifies how the categorization_field is interpreted by the categorization process.

      API name: categorization_analyzer

    • categorizationFieldName

      @Nullable public final String categorizationFieldName()
      If this property is specified, the values of the specified field will be categorized. The resulting categories must be used in a detector by setting by_field_name, over_field_name, or partition_field_name to the keyword mlcategory.

      API name: categorization_field_name

    • categorizationFilters

      public final List<String> categorizationFilters()
      If categorization_field_name is specified, you can also define optional filters. This property expects an array of regular expressions. The expressions are used to filter out matching sequences from the categorization field values.

      API name: categorization_filters

    • detectors

      public final List<DetectorRead> detectors()
      Required - An array of detector configuration objects. Detector configuration objects specify which data fields a job analyzes. They also specify which analytical functions are used. You can specify multiple detectors for a job.

      API name: detectors

    • influencers

      public final List<String> influencers()
      Required - A comma separated list of influencer field names. Typically these can be the by, over, or partition fields that are used in the detector configuration. You might also want to use a field name that is not specifically named in a detector, but is available as part of the input data. When you use multiple detectors, the use of influencers is recommended as it aggregates results for each influencer entity.

      API name: influencers

    • modelPruneWindow

      @Nullable public final Time modelPruneWindow()
      Advanced configuration option. Affects the pruning of models that have not been updated for the given time duration. The value must be set to a multiple of the bucket_span. If set too low, important information may be removed from the model. Typically, set to 30d or longer. If not set, model pruning only occurs if the model memory status reaches the soft limit or the hard limit. For jobs created in 8.1 and later, the default value is the greater of 30d or 20 times bucket_span.

      API name: model_prune_window

    • latency

      @Nullable public final Time latency()
      The size of the window in which to expect data that is out of time order. Defaults to no latency. If you specify a non-zero value, it must be greater than or equal to one second.

      API name: latency

    • multivariateByFields

      @Nullable public final Boolean multivariateByFields()
      This functionality is reserved for internal use. It is not supported for use in customer environments and is not subject to the support SLA of official GA features. If set to true, the analysis will automatically find correlations between metrics for a given by field value and report anomalies when those correlations cease to hold.

      API name: multivariate_by_fields

    • perPartitionCategorization

      @Nullable public final PerPartitionCategorization perPartitionCategorization()
      Settings related to how categorization interacts with partition fields.

      API name: per_partition_categorization

    • summaryCountFieldName

      @Nullable public final String summaryCountFieldName()
      If this property is specified, the data that is fed to the job is expected to be pre-summarized. This property value is the name of the field that contains the count of raw data points that have been summarized. The same summary_count_field_name applies to all detectors in the job.

      API name: summary_count_field_name

    • serialize

      public void serialize(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)
      Serialize this object to JSON.
      Specified by:
      serialize in interface JsonpSerializable
    • serializeInternal

      protected void serializeInternal(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • setupAnalysisConfigReadDeserializer

      protected static void setupAnalysisConfigReadDeserializer(ObjectDeserializer<AnalysisConfigRead.Builder> op)