mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-25 07:37:19 -04:00
This adds a new `randomize_seed` for regression and classification. When not explicitly set, the seed is randomly generated. One can reuse the seed in a similar job in order to ensure the same docs are picked for training.
696 lines
28 KiB
Text
696 lines
28 KiB
Text
tag::allow-lazy-open[]
|
||
Advanced configuration option. Specifies whether this job can open when there is
|
||
insufficient {ml} node capacity for it to be immediately assigned to a node. The
|
||
default value is `false`; if a {ml} node with capacity to run the job cannot immediately be found, the <<ml-open-job,open {anomaly-jobs} API>> returns an
|
||
error. However, this is also subject to the cluster-wide
|
||
`xpack.ml.max_lazy_ml_nodes` setting; see <<advanced-ml-settings>>. If this
|
||
option is set to `true`, the <<ml-open-job,open {anomaly-jobs} API>> does not
|
||
return an error and the job waits in the `opening` state until sufficient {ml}
|
||
node capacity is available.
|
||
end::allow-lazy-open[]
|
||
|
||
tag::allow-no-jobs[]
|
||
Specifies what to do when the request:
|
||
+
|
||
--
|
||
* Contains wildcard expressions and there are no jobs that match.
|
||
* Contains the `_all` string or no identifiers and there are no matches.
|
||
* Contains wildcard expressions and there are only partial matches.
|
||
|
||
The default value is `true`, which returns an empty `jobs` array
|
||
when there are no matches and the subset of results when there are partial
|
||
matches. If this parameter is `false`, the request returns a `404` status code
|
||
when there are no matches or only partial matches.
|
||
--
|
||
end::allow-no-jobs[]
|
||
|
||
tag::allow-no-match[]
|
||
Specifies what to do when the request:
|
||
+
|
||
--
|
||
* Contains wildcard expressions and there are no {dfanalytics-jobs} that match.
|
||
* Contains the `_all` string or no identifiers and there are no matches.
|
||
* Contains wildcard expressions and there are only partial matches.
|
||
|
||
The default value is `true`, which returns an empty `data_frame_analytics` array
|
||
when there are no matches and the subset of results when there are partial
|
||
matches. If this parameter is `false`, the request returns a `404` status code
|
||
when there are no matches or only partial matches.
|
||
--
|
||
end::allow-no-match[]
|
||
|
||
tag::analysis-config[]
|
||
The analysis configuration, which specifies how to analyze the data.
|
||
After you create a job, you cannot change the analysis configuration; all
|
||
the properties are informational. An analysis configuration object has the following properties:
|
||
|
||
`bucket_span`:::
|
||
(<<time-units,time units>>)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=bucket-span]
|
||
|
||
`categorization_field_name`:::
|
||
(string)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=categorization-field-name]
|
||
|
||
`categorization_filters`:::
|
||
(array of strings)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=categorization-filters]
|
||
|
||
`categorization_analyzer`:::
|
||
(object or string)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=categorization-analyzer]
|
||
|
||
`detectors`:::
|
||
(array) 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.
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=detector]
|
||
+
|
||
--
|
||
NOTE: If the `detectors` array does not contain at least one detector,
|
||
no analysis can occur and an error is returned.
|
||
|
||
--
|
||
|
||
`influencers`:::
|
||
(array of strings)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=influencers]
|
||
|
||
`latency`:::
|
||
(time units)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=latency]
|
||
|
||
`multivariate_by_fields`:::
|
||
(boolean)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=multivariate-by-fields]
|
||
|
||
`summary_count_field_name`:::
|
||
(string)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=summary-count-field-name]
|
||
|
||
end::analysis-config[]
|
||
|
||
tag::analysis-limits[]
|
||
Limits can be applied for the resources required to hold the mathematical models
|
||
in memory. These limits are approximate and can be set per job. They do not
|
||
control the memory used by other processes, for example the {es} Java
|
||
processes. If necessary, you can increase the limits after the job is created.
|
||
The `analysis_limits` object has the following properties:
|
||
|
||
`categorization_examples_limit`:::
|
||
(long)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=categorization-examples-limit]
|
||
|
||
`model_memory_limit`:::
|
||
(long or string)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=model-memory-limit]
|
||
end::analysis-limits[]
|
||
|
||
tag::background-persist-interval[]
|
||
Advanced configuration option. The time between each periodic persistence of the
|
||
model. The default value is a randomized value between 3 to 4 hours, which
|
||
avoids all jobs persisting at exactly the same time. The smallest allowed value
|
||
is 1 hour.
|
||
+
|
||
--
|
||
TIP: For very large models (several GB), persistence could take 10-20 minutes,
|
||
so do not set the `background_persist_interval` value too low.
|
||
|
||
--
|
||
end::background-persist-interval[]
|
||
|
||
tag::bucket-span[]
|
||
The size of the interval that the analysis is aggregated into, typically between
|
||
`5m` and `1h`. The default value is `5m`. For more information about time units,
|
||
see <<time-units>>.
|
||
end::bucket-span[]
|
||
|
||
tag::by-field-name[]
|
||
The field used to split the data. In particular, this property is used for
|
||
analyzing the splits with respect to their own history. It is used for finding
|
||
unusual values in the context of the split.
|
||
end::by-field-name[]
|
||
|
||
tag::categorization-analyzer[]
|
||
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. The syntax is very similar to that used to define the `analyzer` in the
|
||
<<indices-analyze,Analyze endpoint>>. For more information, see
|
||
{stack-ov}/ml-configuring-categories.html[Categorizing log messages].
|
||
+
|
||
--
|
||
The `categorization_analyzer` field can be specified either as a string or as an
|
||
object. If it is a string it must refer to a
|
||
<<analysis-analyzers,built-in analyzer>> or one added by another plugin. If it
|
||
is an object it has the following properties:
|
||
--
|
||
|
||
`char_filter`::::
|
||
(array of strings or objects)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=char-filter]
|
||
|
||
`tokenizer`::::
|
||
(string or object)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=tokenizer]
|
||
|
||
`filter`::::
|
||
(array of strings or objects)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=filter]
|
||
end::categorization-analyzer[]
|
||
|
||
tag::categorization-examples-limit[]
|
||
The maximum number of examples stored per category in memory and in the results
|
||
data store. The default value is 4. If you increase this value, more examples
|
||
are available, however it requires that you have more storage available. If you
|
||
set this value to `0`, no examples are stored.
|
||
+
|
||
--
|
||
NOTE: The `categorization_examples_limit` only applies to analysis that uses
|
||
categorization. For more information, see
|
||
{stack-ov}/ml-configuring-categories.html[Categorizing log messages].
|
||
|
||
--
|
||
end::categorization-examples-limit[]
|
||
|
||
tag::categorization-field-name[]
|
||
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`. For more information, see
|
||
{stack-ov}/ml-configuring-categories.html[Categorizing log messages].
|
||
end::categorization-field-name[]
|
||
|
||
tag::categorization-filters[]
|
||
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.
|
||
You can use this functionality to fine tune the categorization by excluding sequences from consideration when categories are defined. For example, you can exclude SQL statements that appear in your log files. For more information, see
|
||
{stack-ov}/ml-configuring-categories.html[Categorizing log messages]. This
|
||
property cannot be used at the same time as `categorization_analyzer`. If you
|
||
only want to define simple regular expression filters that are applied prior to
|
||
tokenization, setting this property is the easiest method. If you also want to
|
||
customize the tokenizer or post-tokenization filtering, use the
|
||
`categorization_analyzer` property instead and include the filters as
|
||
`pattern_replace` character filters. The effect is exactly the same.
|
||
end::categorization-filters[]
|
||
|
||
tag::char-filter[]
|
||
One or more <<analysis-charfilters,character filters>>. In addition to the
|
||
built-in character filters, other plugins can provide more character filters.
|
||
This property is optional. If it is not specified, no character filters are
|
||
applied prior to categorization. If you are customizing some other aspect of the
|
||
analyzer and you need to achieve the equivalent of `categorization_filters`
|
||
(which are not permitted when some other aspect of the analyzer is customized),
|
||
add them here as
|
||
<<analysis-pattern-replace-charfilter,pattern replace character filters>>.
|
||
end::char-filter[]
|
||
|
||
tag::custom-rules[]
|
||
An array of custom rule objects, which enable you to customize the way detectors
|
||
operate. For example, a rule may dictate to the detector conditions under which
|
||
results should be skipped. For more examples, see
|
||
{stack-ov}/ml-configuring-detector-custom-rules.html[Configuring detector custom rules].
|
||
A custom rule has the following properties:
|
||
+
|
||
--
|
||
`actions`::
|
||
(array) The set of actions to be triggered when the rule applies. If
|
||
more than one action is specified the effects of all actions are combined. The
|
||
available actions include:
|
||
|
||
* `skip_result`: The result will not be created. This is the default value.
|
||
Unless you also specify `skip_model_update`, the model will be updated as usual
|
||
with the corresponding series value.
|
||
* `skip_model_update`: The value for that series will not be used to update the
|
||
model. Unless you also specify `skip_result`, the results will be created as
|
||
usual. This action is suitable when certain values are expected to be
|
||
consistently anomalous and they affect the model in a way that negatively
|
||
impacts the rest of the results.
|
||
|
||
`scope`::
|
||
(object) An optional scope of series where the rule applies. A rule must either
|
||
have a non-empty scope or at least one condition. By default, the scope includes
|
||
all series. Scoping is allowed for any of the fields that are also specified in
|
||
`by_field_name`, `over_field_name`, or `partition_field_name`. To add a scope
|
||
for a field, add the field name as a key in the scope object and set its value
|
||
to an object with the following properties:
|
||
|
||
`filter_id`:::
|
||
(string) The id of the filter to be used.
|
||
|
||
`filter_type`:::
|
||
(string) Either `include` (the rule applies for values in the filter) or
|
||
`exclude` (the rule applies for values not in the filter). Defaults to `include`.
|
||
|
||
`conditions`::
|
||
(array) An optional array of numeric conditions when the rule applies. A rule
|
||
must either have a non-empty scope or at least one condition. Multiple
|
||
conditions are combined together with a logical `AND`. A condition has the
|
||
following properties:
|
||
|
||
`applies_to`:::
|
||
(string) Specifies the result property to which the condition applies. The
|
||
available options are `actual`, `typical`, `diff_from_typical`, `time`.
|
||
|
||
`operator`:::
|
||
(string) Specifies the condition operator. The available options are `gt`
|
||
(greater than), `gte` (greater than or equals), `lt` (less than) and `lte` (less
|
||
than or equals).
|
||
|
||
`value`:::
|
||
(double) The value that is compared against the `applies_to` field using the
|
||
`operator`.
|
||
--
|
||
+
|
||
--
|
||
NOTE: If your detector uses `lat_long`, `metric`, `rare`, or `freq_rare`
|
||
functions, you can only specify `conditions` that apply to `time`.
|
||
|
||
--
|
||
end::custom-rules[]
|
||
|
||
tag::custom-settings[]
|
||
Advanced configuration option. Contains custom meta data about the job. For
|
||
example, it can contain custom URL information as shown in
|
||
{stack-ov}/ml-configuring-url.html[Adding custom URLs to {ml} results].
|
||
end::custom-settings[]
|
||
|
||
tag::data-description[]
|
||
The data description defines the format of the input data when you send data to
|
||
the job by using the <<ml-post-data,post data>> API. Note that when configure
|
||
a {dfeed}, these properties are automatically set.
|
||
+
|
||
--
|
||
When data is received via the <<ml-post-data,post data>> API, it is not stored
|
||
in {es}. Only the results for {anomaly-detect} are retained.
|
||
|
||
A data description object has the following properties:
|
||
|
||
`format`:::
|
||
(string) Only `JSON` format is supported at this time.
|
||
|
||
`time_field`:::
|
||
(string) The name of the field that contains the timestamp.
|
||
The default value is `time`.
|
||
|
||
`time_format`:::
|
||
(string)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=time-format]
|
||
--
|
||
end::data-description[]
|
||
|
||
tag::dependent_variable[]
|
||
`dependent_variable`::
|
||
(Required, string) Defines which field of the document is to be predicted.
|
||
This parameter is supplied by field name and must match one of the fields in
|
||
the index being used to train. If this field is missing from a document, then
|
||
that document will not be used for training, but a prediction with the trained
|
||
model will be generated for it. It is also known as continuous target variable.
|
||
end::dependent_variable[]
|
||
|
||
tag::detector-description[]
|
||
A description of the detector. For example, `Low event rate`.
|
||
end::detector-description[]
|
||
|
||
tag::detector-field-name[]
|
||
The field that the detector uses in the function. If you use an event rate
|
||
function such as `count` or `rare`, do not specify this field.
|
||
+
|
||
--
|
||
NOTE: The `field_name` cannot contain double quotes or backslashes.
|
||
|
||
--
|
||
end::detector-field-name[]
|
||
|
||
tag::detector-index[]
|
||
A unique identifier for the detector. This identifier is based on the order of
|
||
the detectors in the `analysis_config`, starting at zero. You can use this
|
||
identifier when you want to update a specific detector.
|
||
end::detector-index[]
|
||
|
||
tag::detector[]
|
||
A detector has the following properties:
|
||
|
||
`by_field_name`::::
|
||
(string)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=by-field-name]
|
||
|
||
`custom_rules`::::
|
||
(array)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=custom-rules]
|
||
|
||
`detector_description`::::
|
||
(string)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=detector-description]
|
||
|
||
`detector_index`::::
|
||
(integer)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=detector-index]
|
||
|
||
`exclude_frequent`::::
|
||
(string)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=exclude-frequent]
|
||
|
||
`field_name`::::
|
||
(string)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=detector-field-name]
|
||
|
||
`function`::::
|
||
(string)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=function]
|
||
|
||
`over_field_name`::::
|
||
(string)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=over-field-name]
|
||
|
||
`partition_field_name`::::
|
||
(string)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=partition-field-name]
|
||
|
||
`use_null`::::
|
||
(boolean)
|
||
include::{docdir}/ml/ml-shared.asciidoc[tag=use-null]
|
||
|
||
end::detector[]
|
||
|
||
tag::eta[]
|
||
`eta`::
|
||
(Optional, double) The shrinkage applied to the weights. Smaller values result
|
||
in larger forests which have better generalization error. However, the smaller
|
||
the value the longer the training will take. For more information, see
|
||
https://en.wikipedia.org/wiki/Gradient_boosting#Shrinkage[this wiki article]
|
||
about shrinkage.
|
||
end::eta[]
|
||
|
||
tag::exclude-frequent[]
|
||
Contains one of the following values: `all`, `none`, `by`, or `over`. If set,
|
||
frequent entities are excluded from influencing the anomaly results. Entities
|
||
can be considered frequent over time or frequent in a population. If you are
|
||
working with both over and by fields, then you can set `exclude_frequent` to
|
||
`all` for both fields, or to `by` or `over` for those specific fields.
|
||
end::exclude-frequent[]
|
||
|
||
tag::feature_bag_fraction[]
|
||
`feature_bag_fraction`::
|
||
(Optional, double) Defines the fraction of features that will be used when
|
||
selecting a random bag for each candidate split.
|
||
end::feature_bag_fraction[]
|
||
|
||
tag::filter[]
|
||
One or more <<analysis-tokenfilters,token filters>>. In addition to the built-in
|
||
token filters, other plugins can provide more token filters. This property is
|
||
optional. If it is not specified, no token filters are applied prior to
|
||
categorization.
|
||
end::filter[]
|
||
|
||
tag::function[]
|
||
The analysis function that is used. For example, `count`, `rare`, `mean`, `min`,
|
||
`max`, and `sum`. For more information, see
|
||
{stack-ov}/ml-functions.html[Function reference].
|
||
end::function[]
|
||
|
||
tag::gamma[]
|
||
`gamma`::
|
||
(Optional, double) Regularization parameter to prevent overfitting on the
|
||
training dataset. Multiplies a linear penalty associated with the size of
|
||
individual trees in the forest. The higher the value the more training will
|
||
prefer smaller trees. The smaller this parameter the larger individual trees
|
||
will be and the longer train will take.
|
||
end::gamma[]
|
||
|
||
tag::groups[]
|
||
A list of job groups. A job can belong to no groups or many.
|
||
end::groups[]
|
||
|
||
tag::influencers[]
|
||
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.
|
||
end::influencers[]
|
||
|
||
tag::job-id-anomaly-detection[]
|
||
Identifier for the {anomaly-job}.
|
||
end::job-id-anomaly-detection[]
|
||
|
||
tag::job-id-data-frame-analytics[]
|
||
Identifier for the {dfanalytics-job}.
|
||
end::job-id-data-frame-analytics[]
|
||
|
||
tag::job-id-anomaly-detection-default[]
|
||
Identifier for the {anomaly-job}. It can be a job identifier, a group name, or a wildcard expression. If you do not specify one of these options, the API returns information for all {anomaly-jobs}.
|
||
end::job-id-anomaly-detection-default[]
|
||
|
||
tag::job-id-data-frame-analytics-default[]
|
||
Identifier for the {dfanalytics-job}. If you do not specify this option, the API
|
||
returns information for the first hundred {dfanalytics-jobs}.
|
||
end::job-id-data-frame-analytics-default[]
|
||
|
||
tag::job-id-anomaly-detection-list[]
|
||
An identifier for the {anomaly-jobs}. It can be a job
|
||
identifier, a group name, or a comma-separated list of jobs or groups.
|
||
end::job-id-anomaly-detection-list[]
|
||
|
||
tag::job-id-anomaly-detection-wildcard[]
|
||
Identifier for the {anomaly-job}. It can be a job identifier, a group name, or a wildcard expression.
|
||
end::job-id-anomaly-detection-wildcard[]
|
||
|
||
tag::job-id-anomaly-detection-wildcard-list[]
|
||
Identifier for the {anomaly-job}. It can be a job identifier, a group name, a
|
||
comma-separated list of jobs or groups, or a wildcard expression.
|
||
end::job-id-anomaly-detection-wildcard-list[]
|
||
|
||
tag::job-id-anomaly-detection-define[]
|
||
Identifier for the {anomaly-job}. This identifier can contain lowercase alphanumeric
|
||
characters (a-z and 0-9), hyphens, and underscores. It must start and end with
|
||
alphanumeric characters.
|
||
end::job-id-anomaly-detection-define[]
|
||
|
||
tag::job-id-data-frame-analytics-define[]
|
||
Identifier for the {dfanalytics-job}. This identifier can contain lowercase
|
||
alphanumeric characters (a-z and 0-9), hyphens, and underscores. It must start
|
||
and end with alphanumeric characters.
|
||
end::job-id-data-frame-analytics-define[]
|
||
|
||
tag::jobs-stats-anomaly-detection[]
|
||
An array of {anomaly-job} statistics objects.
|
||
For more information, see <<ml-jobstats>>.
|
||
end::jobs-stats-anomaly-detection[]
|
||
|
||
tag::lambda[]
|
||
`lambda`::
|
||
(Optional, double) Regularization parameter to prevent overfitting on the
|
||
training dataset. Multiplies an L2 regularisation term which applies to leaf
|
||
weights of the individual trees in the forest. The higher the value the more
|
||
training will attempt to keep leaf weights small. This makes the prediction
|
||
function smoother at the expense of potentially not being able to capture
|
||
relevant relationships between the features and the {depvar}. The smaller this
|
||
parameter the larger individual trees will be and the longer train will take.
|
||
end::lambda[]
|
||
|
||
tag::latency[]
|
||
The size of the window in which to expect data that is out of time order. The
|
||
default value is 0 (no latency). If you specify a non-zero value, it must be greater than or equal to one second. For more information about time units, see <<time-units>>.
|
||
+
|
||
--
|
||
NOTE: Latency is only applicable when you send data by using
|
||
the <<ml-post-data,post data>> API.
|
||
|
||
--
|
||
end::latency[]
|
||
|
||
tag::maximum_number_trees[]
|
||
`maximum_number_trees`::
|
||
(Optional, integer) Defines the maximum number of trees the forest is allowed
|
||
to contain. The maximum value is 2000.
|
||
end::maximum_number_trees[]
|
||
|
||
tag::model-memory-limit[]
|
||
The approximate maximum amount of memory resources that are required for
|
||
analytical processing. Once this limit is approached, data pruning becomes
|
||
more aggressive. Upon exceeding this limit, new entities are not modeled. The
|
||
default value for jobs created in version 6.1 and later is `1024mb`.
|
||
This value will need to be increased for jobs that are expected to analyze high
|
||
cardinality fields, but the default is set to a relatively small size to ensure
|
||
that high resource usage is a conscious decision. The default value for jobs
|
||
created in versions earlier than 6.1 is `4096mb`.
|
||
+
|
||
--
|
||
If you specify a number instead of a string, the units are assumed to be MiB.
|
||
Specifying a string is recommended for clarity. If you specify a byte size unit
|
||
of `b` or `kb` and the number does not equate to a discrete number of megabytes,
|
||
it is rounded down to the closest MiB. The minimum valid value is 1 MiB. If you
|
||
specify a value less than 1 MiB, an error occurs. For more information about
|
||
supported byte size units, see <<byte-units>>.
|
||
|
||
If your `elasticsearch.yml` file contains an `xpack.ml.max_model_memory_limit`
|
||
setting, an error occurs when you try to create jobs that have
|
||
`model_memory_limit` values greater than that setting. For more information,
|
||
see <<ml-settings>>.
|
||
--
|
||
end::model-memory-limit[]
|
||
|
||
tag::model-plot-config[]
|
||
This advanced configuration option stores model information along with the
|
||
results. It provides a more detailed view into {anomaly-detect}.
|
||
+
|
||
--
|
||
WARNING: If you enable model plot it can add considerable overhead to the performance
|
||
of the system; it is not feasible for jobs with many entities.
|
||
|
||
Model plot provides a simplified and indicative view of the model and its bounds.
|
||
It does not display complex features such as multivariate correlations or multimodal data.
|
||
As such, anomalies may occasionally be reported which cannot be seen in the model plot.
|
||
|
||
Model plot config can be configured when the job is created or updated later. It must be
|
||
disabled if performance issues are experienced.
|
||
|
||
The `model_plot_config` object has the following properties:
|
||
|
||
`enabled`:::
|
||
(boolean) If true, enables calculation and storage of the model bounds for
|
||
each entity that is being analyzed. By default, this is not enabled.
|
||
|
||
`terms`:::
|
||
experimental[] (string) Limits data collection to this comma separated list of
|
||
partition or by field values. If terms are not specified or it is an empty
|
||
string, no filtering is applied. For example, "CPU,NetworkIn,DiskWrites".
|
||
Wildcards are not supported. Only the specified `terms` can be viewed when
|
||
using the Single Metric Viewer.
|
||
--
|
||
end::model-plot-config[]
|
||
|
||
tag::model-snapshot-id[]
|
||
A numerical character string that uniquely identifies the model snapshot. For
|
||
example, `1491007364`. For more information about model snapshots, see
|
||
<<ml-snapshot-resource>>.
|
||
end::model-snapshot-id[]
|
||
|
||
tag::model-snapshot-retention-days[]
|
||
The time in days that model snapshots are retained for the job. Older snapshots
|
||
are deleted. The default value is `1`, which means snapshots are retained for
|
||
one day (twenty-four hours).
|
||
end::model-snapshot-retention-days[]
|
||
|
||
tag::multivariate-by-fields[]
|
||
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. For example, suppose CPU and memory usage on host A
|
||
is usually highly correlated with the same metrics on host B. Perhaps this
|
||
correlation occurs because they are running a load-balanced application.
|
||
If you enable this property, then anomalies will be reported when, for example,
|
||
CPU usage on host A is high and the value of CPU usage on host B is low. That
|
||
is to say, you'll see an anomaly when the CPU of host A is unusual given
|
||
the CPU of host B.
|
||
|
||
NOTE: To use the `multivariate_by_fields` property, you must also specify
|
||
`by_field_name` in your detector.
|
||
|
||
--
|
||
end::multivariate-by-fields[]
|
||
|
||
tag::over-field-name[]
|
||
The field used to split the data. In particular, this property is used for
|
||
analyzing the splits with respect to the history of all splits. It is used for
|
||
finding unusual values in the population of all splits. For more information,
|
||
see {stack-ov}/ml-configuring-pop.html[Performing population analysis].
|
||
end::over-field-name[]
|
||
|
||
tag::partition-field-name[]
|
||
The field used to segment the analysis. When you use this property, you have
|
||
completely independent baselines for each value of this field.
|
||
end::partition-field-name[]
|
||
|
||
tag::prediction_field_name[]
|
||
`prediction_field_name`::
|
||
(Optional, string) Defines the name of the prediction field in the results.
|
||
Defaults to `<dependent_variable>_prediction`.
|
||
end::prediction_field_name[]
|
||
|
||
tag::renormalization-window-days[]
|
||
Advanced configuration option. The period over which adjustments to the score
|
||
are applied, as new data is seen. The default value is the longer of 30 days or
|
||
100 `bucket_spans`.
|
||
end::renormalization-window-days[]
|
||
|
||
tag::results-index-name[]
|
||
A text string that affects the name of the {ml} results index. The default value
|
||
is `shared`, which generates an index named `.ml-anomalies-shared`.
|
||
end::results-index-name[]
|
||
|
||
tag::results-retention-days[]
|
||
Advanced configuration option. The number of days for which job results are
|
||
retained. Once per day at 00:30 (server time), results older than this period
|
||
are deleted from {es}. The default value is null, which means results are
|
||
retained.
|
||
end::results-retention-days[]
|
||
|
||
tag::summary-count-field-name[]
|
||
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.
|
||
+
|
||
--
|
||
NOTE: The `summary_count_field_name` property cannot be used with the `metric`
|
||
function.
|
||
|
||
--
|
||
end::summary-count-field-name[]
|
||
|
||
tag::time-format[]
|
||
The time format, which can be `epoch`, `epoch_ms`, or a custom pattern. The
|
||
default value is `epoch`, which refers to UNIX or Epoch time (the number of
|
||
seconds since 1 Jan 1970). The value `epoch_ms` indicates that time is measured
|
||
in milliseconds since the epoch. The `epoch` and `epoch_ms` time formats accept
|
||
either integer or real values. +
|
||
+
|
||
--
|
||
NOTE: Custom patterns must conform to the Java `DateTimeFormatter` class.
|
||
When you use date-time formatting patterns, it is recommended that you provide
|
||
the full date, time and time zone. For example: `yyyy-MM-dd'T'HH:mm:ssX`.
|
||
If the pattern that you specify is not sufficient to produce a complete timestamp,
|
||
job creation fails.
|
||
|
||
--
|
||
end::time-format[]
|
||
|
||
tag::tokenizer[]
|
||
The name or definition of the <<analysis-tokenizers,tokenizer>> to use after
|
||
character filters are applied. This property is compulsory if
|
||
`categorization_analyzer` is specified as an object. Machine learning provides a
|
||
tokenizer called `ml_classic` that tokenizes in the same way as the
|
||
non-customizable tokenizer in older versions of the product. If you want to use
|
||
that tokenizer but change the character or token filters, specify
|
||
`"tokenizer": "ml_classic"` in your `categorization_analyzer`.
|
||
end::tokenizer[]
|
||
|
||
tag::training_percent[]
|
||
`training_percent`::
|
||
(Optional, integer) Defines what percentage of the eligible documents that will
|
||
be used for training. Documents that are ignored by the analysis (for example
|
||
those that contain arrays) won’t be included in the calculation for used
|
||
percentage. Defaults to `100`.
|
||
end::training_percent[]
|
||
|
||
tag::randomize_seed[]
|
||
`randomize_seed`::
|
||
(Optional, long) Defines the seed to the random generator that is used to pick
|
||
which documents will be used for training. By default it is randomly generated.
|
||
Set it to a specific value to ensure the same documents are used for training
|
||
assuming other related parameters (e.g. `source`, `analyzed_fields`, etc.) are the same.
|
||
end::randomize_seed[]
|
||
|
||
|
||
tag::use-null[]
|
||
Defines whether a new series is used as the null series when there is no value
|
||
for the by or partition fields. The default value is `false`.
|
||
end::use-null[]
|