2017-04-11 21:52:47 -04:00
|
|
|
//lcawley Verified example output 2017-04-11
|
2017-04-04 18:26:39 -04:00
|
|
|
[[ml-job-resource]]
|
|
|
|
==== Job Resources
|
|
|
|
|
|
|
|
A job resource has the following properties:
|
|
|
|
|
|
|
|
`analysis_config`::
|
2017-04-19 16:31:07 -04:00
|
|
|
(object) The analysis configuration, which specifies how to analyze the data.
|
2017-04-19 13:52:30 -04:00
|
|
|
See <<ml-analysisconfig, analysis configuration objects>>.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
`analysis_limits`::
|
2017-04-19 13:52:30 -04:00
|
|
|
(object) Defines approximate limits on the memory resource requirements for the job.
|
2017-04-04 18:26:39 -04:00
|
|
|
See <<ml-apilimits,analysis limits>>.
|
|
|
|
|
2017-04-24 12:31:31 -04:00
|
|
|
`background_persist_interval`::
|
2017-04-24 13:46:17 -04:00
|
|
|
(time units) 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.
|
2017-04-24 12:31:31 -04:00
|
|
|
|
2017-04-04 18:26:39 -04:00
|
|
|
`create_time`::
|
2017-04-19 16:31:07 -04:00
|
|
|
(string) The time the job was created, in ISO 8601 format.
|
|
|
|
For example, `1491007356077`.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
`data_description`::
|
2017-04-19 16:31:07 -04:00
|
|
|
(object) Describes the data format and how APIs parse timestamp fields.
|
|
|
|
See <<ml-datadescription,data description objects>>.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
`description`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) An optional description of the job.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
`finished_time`::
|
2017-04-19 16:31:07 -04:00
|
|
|
(string) If the job closed or failed, this is the time the job finished,
|
|
|
|
otherwise it is `null`.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
`job_id`::
|
2017-04-19 13:52:30 -04:00
|
|
|
(string) The unique identifier for the job.
|
2017-04-24 13:46:17 -04:00
|
|
|
|
2017-04-11 21:52:47 -04:00
|
|
|
`job_type`::
|
2017-04-19 13:52:30 -04:00
|
|
|
(string) Reserved for future use, currently set to `anomaly_detector`.
|
2017-04-11 21:52:47 -04:00
|
|
|
|
2017-04-19 13:52:30 -04:00
|
|
|
`model_plot_config`::
|
2017-04-19 16:31:07 -04:00
|
|
|
(object) Configuration properties for storing additional model information.
|
2017-04-19 13:52:30 -04:00
|
|
|
See <<ml-apimodelplotconfig, model plot configuration>>.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
`model_snapshot_id`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) A numerical character string that uniquely identifies the model
|
2017-04-11 21:52:47 -04:00
|
|
|
snapshot. For example, `1491007364`.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
`model_snapshot_retention_days`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(long) The time in days that model snapshots are retained for the job.
|
2017-04-11 21:52:47 -04:00
|
|
|
Older snapshots are deleted. The default value is 1 day.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-24 12:31:31 -04:00
|
|
|
`renormalization_window_days`::
|
|
|
|
(long) 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`.
|
|
|
|
|
2017-04-04 18:26:39 -04:00
|
|
|
`results_index_name`::
|
2017-04-19 16:31:07 -04:00
|
|
|
(string) The name of the index in which to store the {ml} results.
|
|
|
|
The default value is `shared`,
|
|
|
|
which corresponds to the index name `.ml-anomalies-shared`
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-24 12:31:31 -04:00
|
|
|
`results_retention_days`::
|
2017-04-24 13:46:17 -04:00
|
|
|
(long) 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 Elasticsearch. The default value is null, which means results
|
|
|
|
are retained.
|
2017-04-24 12:31:31 -04:00
|
|
|
|
2017-04-04 18:26:39 -04:00
|
|
|
[[ml-analysisconfig]]
|
|
|
|
===== Analysis Configuration Objects
|
|
|
|
|
|
|
|
An analysis configuration object has the following properties:
|
|
|
|
|
2017-04-10 11:59:27 -04:00
|
|
|
`bucket_span` (required)::
|
2017-04-19 16:31:07 -04:00
|
|
|
(time units) The size of the interval that the analysis is aggregated into,
|
|
|
|
typically between `5m` and `1h`. The default value is `5m`.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
`categorization_field_name`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) If not null, the values of the specified field will be categorized.
|
2017-04-04 18:26:39 -04:00
|
|
|
The resulting categories can be used in a detector by setting `by_field_name`,
|
2017-04-24 12:31:31 -04:00
|
|
|
`over_field_name`, or `partition_field_name` to the keyword `mlcategory`.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
`categorization_filters`::
|
2017-04-19 16:31:07 -04:00
|
|
|
(array of strings) 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
|
|
|
|
off the categorization field values. This functionality is useful to fine tune
|
|
|
|
categorization by excluding sequences that should not be taken into
|
|
|
|
consideration for defining categories. For example, you can exclude SQL
|
|
|
|
statements that appear in your log files.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-10 11:59:27 -04:00
|
|
|
`detectors` (required)::
|
2017-04-11 22:26:18 -04:00
|
|
|
(array) An array of detector configuration objects,
|
2017-04-04 18:26:39 -04:00
|
|
|
which describe the anomaly detectors that are used in the job.
|
2017-04-18 18:13:21 -04:00
|
|
|
See <<ml-detectorconfig,detector configuration objects>>. +
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-24 13:46:17 -04:00
|
|
|
NOTE: If the `detectors` array does not contain at least one detector,
|
|
|
|
no analysis can occur and an error is returned.
|
|
|
|
|
2017-04-04 18:26:39 -04:00
|
|
|
`influencers`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(array of strings) A comma separated list of influencer field names.
|
2017-04-19 16:31:07 -04:00
|
|
|
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.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
`latency`::
|
2017-04-19 16:31:07 -04:00
|
|
|
(unsigned integer) The size of the window, in seconds, in which to expect data
|
|
|
|
that is out of time order. The default value is 0 (no latency). +
|
2017-04-24 13:46:17 -04:00
|
|
|
|
2017-04-19 16:31:07 -04:00
|
|
|
NOTE: Latency is only applicable when you send data by using
|
|
|
|
the <<ml-post-data,post data>> API.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
`multivariate_by_fields`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(boolean) If set to `true`, the analysis will automatically find correlations
|
2017-04-04 18:26:39 -04:00
|
|
|
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.
|
2017-04-24 13:46:17 -04:00
|
|
|
That is to say, you'll see an anomaly when the CPU of host A is unusual given
|
|
|
|
the CPU of host B. +
|
|
|
|
|
2017-04-19 16:31:07 -04:00
|
|
|
NOTE: To use the `multivariate_by_fields` property, you must also specify
|
|
|
|
`by_field_name` in your detector.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
`summary_count_field_name`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) If not null, the data fed to the job is expected to be pre-summarized.
|
2017-04-19 16:31:07 -04:00
|
|
|
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. +
|
|
|
|
|
2017-04-24 13:46:17 -04:00
|
|
|
NOTE: The `summary_count_field_name` property cannot be used with the `metric`
|
|
|
|
function.
|
2017-04-19 13:52:30 -04:00
|
|
|
|
2017-04-19 16:31:07 -04:00
|
|
|
////
|
|
|
|
LEAVE UNDOCUMENTED
|
|
|
|
`overlapping_buckets`::
|
|
|
|
(boolean) If set to `true`, an additional analysis occurs that runs out of phase by half a bucket length.
|
|
|
|
This requires more system resources and enhances detection of anomalies that span bucket boundaries.
|
|
|
|
`use_per_partition_normalization`::
|
|
|
|
() TBD
|
|
|
|
////
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-19 16:31:07 -04:00
|
|
|
[float]
|
2017-04-04 18:26:39 -04:00
|
|
|
[[ml-detectorconfig]]
|
|
|
|
===== 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.
|
|
|
|
Each detector has the following properties:
|
|
|
|
|
|
|
|
`by_field_name`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) The field used to split the data.
|
2017-04-04 18:26:39 -04:00
|
|
|
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.
|
|
|
|
|
|
|
|
`detector_description`::
|
2017-04-19 13:52:30 -04:00
|
|
|
(string) A description of the detector. For example, `Low event rate`.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
`exclude_frequent`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) Contains one of the following values: `all`, `none`, `by`, or `over`.
|
2017-04-04 18:26:39 -04:00
|
|
|
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.
|
|
|
|
|
|
|
|
`field_name`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) The field that the detector uses in the function. If you use an event rate
|
2017-04-18 18:13:21 -04:00
|
|
|
function such as `count` or `rare`, do not specify this field. +
|
2017-04-19 16:31:07 -04:00
|
|
|
|
2017-04-24 13:46:17 -04:00
|
|
|
NOTE: The `field_name` cannot contain double quotes or backslashes.
|
2017-04-19 13:52:30 -04:00
|
|
|
|
2017-04-10 11:59:27 -04:00
|
|
|
`function` (required)::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) The analysis function that is used.
|
2017-04-04 18:26:39 -04:00
|
|
|
For example, `count`, `rare`, `mean`, `min`, `max`, and `sum`.
|
|
|
|
|
|
|
|
`over_field_name`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) The field used to split the data.
|
2017-04-04 18:26:39 -04:00
|
|
|
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.
|
|
|
|
|
|
|
|
`partition_field_name`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) The field used to segment the analysis.
|
2017-04-04 18:26:39 -04:00
|
|
|
When you use this property, you have completely independent baselines for each value of this field.
|
|
|
|
|
|
|
|
`use_null`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(boolean) Defines whether a new series is used as the null series
|
2017-04-18 18:13:21 -04:00
|
|
|
when there is no value for the by or partition fields. The default value is `false`. +
|
2017-04-24 13:46:17 -04:00
|
|
|
|
2017-04-19 16:31:07 -04:00
|
|
|
IMPORTANT: Field names are case sensitive, for example a field named 'Bytes'
|
|
|
|
is different from one named 'bytes'.
|
|
|
|
|
|
|
|
////
|
|
|
|
LEAVE UNDOCUMENTED
|
|
|
|
`detector_rules`::
|
|
|
|
(array) TBD
|
|
|
|
////
|
|
|
|
|
|
|
|
[float]
|
2017-04-04 18:26:39 -04:00
|
|
|
[[ml-datadescription]]
|
|
|
|
===== Data Description Objects
|
|
|
|
|
2017-04-19 16:31:07 -04:00
|
|
|
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 data feed, these properties are automatically set.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-19 16:31:07 -04:00
|
|
|
When data is received via the <<ml-post-data,post data>> API, it is not stored
|
|
|
|
in Elasticsearch. Only the results for anomaly detection are retained.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
A data description object has the following properties:
|
|
|
|
|
|
|
|
`format`::
|
2017-04-19 16:31:07 -04:00
|
|
|
(string) Only `JSON` format is supported at this time.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
`time_field`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) The name of the field that contains the timestamp.
|
2017-04-04 18:26:39 -04:00
|
|
|
The default value is `time`.
|
|
|
|
|
|
|
|
`time_format`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) The time format, which can be `epoch`, `epoch_ms`, or a custom pattern.
|
2017-04-04 18:26:39 -04:00
|
|
|
The default value is `epoch`, which refers to UNIX or Epoch time (the number of seconds
|
2017-04-19 13:52:30 -04:00
|
|
|
since 1 Jan 1970).
|
2017-04-04 18:26:39 -04:00
|
|
|
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. +
|
2017-04-24 13:46:17 -04:00
|
|
|
|
2017-04-19 16:31:07 -04:00
|
|
|
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.
|
|
|
|
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-19 16:31:07 -04:00
|
|
|
[float]
|
2017-04-04 18:26:39 -04:00
|
|
|
[[ml-apilimits]]
|
|
|
|
===== Analysis Limits
|
|
|
|
|
2017-04-19 13:52:30 -04:00
|
|
|
Limits can be applied for the resources required to hold the mathematical models in memory.
|
2017-04-19 16:31:07 -04:00
|
|
|
These limits are approximate and can be set per job. They do not control the
|
|
|
|
memory used by other processes, for example the Elasticsearch Java processes.
|
|
|
|
If necessary, you can increase the limits after the job is created.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
The `analysis_limits` object has the following properties:
|
|
|
|
|
|
|
|
`categorization_examples_limit`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(long) The maximum number of examples stored per category in memory and
|
2017-04-04 18:26:39 -04:00
|
|
|
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.
|
2017-04-19 16:31:07 -04:00
|
|
|
If you set this value to `0`, no examples are stored. +
|
2017-04-19 13:52:30 -04:00
|
|
|
|
2017-04-24 13:46:17 -04:00
|
|
|
NOTE: The `categorization_examples_limit` only applies to analysis that uses categorization.
|
2017-04-19 16:31:07 -04:00
|
|
|
|
2017-04-04 18:26:39 -04:00
|
|
|
`model_memory_limit`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(long) The maximum amount of memory, in MiB, that the mathematical models can use.
|
2017-04-04 18:26:39 -04:00
|
|
|
Once this limit is approached, data pruning becomes more aggressive.
|
|
|
|
Upon exceeding this limit, new entities are not modeled. The default value is 4096.
|
2017-04-19 13:52:30 -04:00
|
|
|
|
2017-04-19 16:31:07 -04:00
|
|
|
[float]
|
2017-04-19 13:52:30 -04:00
|
|
|
[[ml-apimodelplotconfig]]
|
|
|
|
===== Model Plot Config
|
|
|
|
|
2017-04-19 16:31:07 -04:00
|
|
|
This advanced configuration option stores model information along with the
|
|
|
|
results. It provides a more detailed view into anomaly detection. If you enable
|
|
|
|
this option, it can add considerable overhead to the performance of the system;
|
|
|
|
it is not feasible for jobs with many entities.
|
2017-04-19 13:52:30 -04:00
|
|
|
|
2017-04-19 16:31:07 -04:00
|
|
|
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.
|
2017-04-19 13:52:30 -04:00
|
|
|
|
2017-04-19 16:31:07 -04:00
|
|
|
Model plot config can be configured when the job is created or updated later.
|
|
|
|
It must be disabled if performance issues are experienced.
|
2017-04-19 13:52:30 -04:00
|
|
|
|
|
|
|
The `model_plot_config` object has the following properties:
|
|
|
|
|
|
|
|
`enabled`::
|
2017-04-19 16:31:07 -04:00
|
|
|
(boolean) If true, enables calculation and storage of the model bounds for
|
|
|
|
each entity that is being analyzed. By default, this is not enabled.
|
2017-04-19 13:52:30 -04:00
|
|
|
|
|
|
|
`terms`::
|
2017-04-19 16:31:07 -04:00
|
|
|
(string) Limits data collection to this comma separated list of _partition_
|
|
|
|
or _by_ field names. If terms are not specified or it is an empty string,
|
|
|
|
no filtering is applied. For example, `"CPU,NetworkIn,DiskWrites"`
|