2017-06-19 21:23:58 -04:00
|
|
|
[role="xpack"]
|
2017-04-04 18:26:39 -04:00
|
|
|
[[ml-get-job]]
|
2017-12-14 13:52:49 -05:00
|
|
|
=== Get Jobs API
|
|
|
|
++++
|
|
|
|
<titleabbrev>Get Jobs</titleabbrev>
|
|
|
|
++++
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2018-01-15 11:44:08 -05:00
|
|
|
This API enables you to retrieve configuration information for jobs.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-25 17:08:29 -04:00
|
|
|
|
2017-06-06 16:42:47 -04:00
|
|
|
==== Request
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-08-09 11:30:21 -04:00
|
|
|
`GET _xpack/ml/anomaly_detectors/<job_id>` +
|
|
|
|
|
|
|
|
`GET _xpack/ml/anomaly_detectors/<job_id>,<job_id>` +
|
|
|
|
|
2017-04-04 18:26:39 -04:00
|
|
|
`GET _xpack/ml/anomaly_detectors/` +
|
|
|
|
|
2017-08-09 11:30:21 -04:00
|
|
|
`GET _xpack/ml/anomaly_detectors/_all`
|
|
|
|
|
|
|
|
|
|
|
|
===== Description
|
|
|
|
|
|
|
|
You can get information for multiple jobs in a single API request by using a
|
|
|
|
group name, a comma-separated list of jobs, or a wildcard expression. You can
|
|
|
|
get information for all jobs by using `_all`, by specifying `*` as the
|
|
|
|
`<job_id>`, or by omitting the `<job_id>`.
|
2017-04-11 21:52:47 -04:00
|
|
|
|
2017-04-18 18:13:21 -04:00
|
|
|
|
2017-06-06 16:42:47 -04:00
|
|
|
==== Path Parameters
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
`job_id`::
|
2017-08-09 11:30:21 -04:00
|
|
|
(string) Identifier for the 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 jobs.
|
2017-04-25 17:08:29 -04:00
|
|
|
|
2017-06-06 16:42:47 -04:00
|
|
|
==== Results
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-11 22:26:18 -04:00
|
|
|
The API returns the following information:
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-11 21:52:47 -04:00
|
|
|
`jobs`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(array) An array of job resources.
|
2017-04-11 21:52:47 -04:00
|
|
|
For more information, see <<ml-job-resource,Job Resources>>.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
|
2017-06-06 16:42:47 -04:00
|
|
|
==== Authorization
|
2017-04-25 17:08:29 -04:00
|
|
|
|
|
|
|
You must have `monitor_ml`, `monitor`, `manage_ml`, or `manage` cluster
|
2017-06-19 21:23:58 -04:00
|
|
|
privileges to use this API. For more information, see
|
|
|
|
{xpack-ref}/security-privileges.html[Security Privileges].
|
2017-04-25 17:08:29 -04:00
|
|
|
|
|
|
|
|
2017-06-06 16:42:47 -04:00
|
|
|
==== Examples
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2018-02-09 12:16:24 -05:00
|
|
|
The following example gets configuration information for the `total-requests` job:
|
2017-04-11 21:52:47 -04:00
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2018-02-09 12:16:24 -05:00
|
|
|
GET _xpack/ml/anomaly_detectors/total-requests
|
2017-04-11 21:52:47 -04:00
|
|
|
--------------------------------------------------
|
|
|
|
// CONSOLE
|
2018-02-09 12:16:24 -05:00
|
|
|
// TEST[setup:server_metrics_job]
|
2017-04-11 21:52:47 -04:00
|
|
|
|
2017-05-08 09:53:04 -04:00
|
|
|
The API returns the following results:
|
2017-04-21 11:23:27 -04:00
|
|
|
[source,js]
|
2017-04-04 18:26:39 -04:00
|
|
|
----
|
|
|
|
{
|
|
|
|
"count": 1,
|
|
|
|
"jobs": [
|
2017-04-11 21:52:47 -04:00
|
|
|
{
|
2018-02-09 12:16:24 -05:00
|
|
|
"job_id": "total-requests",
|
2017-04-11 21:52:47 -04:00
|
|
|
"job_type": "anomaly_detector",
|
2018-02-09 12:16:24 -05:00
|
|
|
"job_version": "7.0.0-alpha1",
|
|
|
|
"description": "Total sum of requests",
|
|
|
|
"create_time": 1517011406091,
|
2017-04-04 18:26:39 -04:00
|
|
|
"analysis_config": {
|
2018-02-09 12:16:24 -05:00
|
|
|
"bucket_span": "10m",
|
2017-04-04 18:26:39 -04:00
|
|
|
"detectors": [
|
|
|
|
{
|
2018-02-09 12:16:24 -05:00
|
|
|
"detector_description": "Sum of total",
|
|
|
|
"function": "sum",
|
|
|
|
"field_name": "total",
|
2017-06-02 05:26:01 -04:00
|
|
|
"detector_index": 0
|
2017-04-04 18:26:39 -04:00
|
|
|
}
|
|
|
|
],
|
2018-02-09 12:16:24 -05:00
|
|
|
"influencers": [ ]
|
|
|
|
},
|
|
|
|
"analysis_limits": {
|
[ML] Set explicit defaults to AnalysisLimits (elastic/x-pack-elasticsearch#4015)
Analysis limits contain settings that affect the resources
used by ML jobs. Those limits always take place. However,
explictly setting them is not required as they have reasonable
defaults. For a long time those defaults lived on the c++ side.
The job could just not have any explicit limits and that meant
defaults would be used at the c++ side. This has the disadvantage
that it is not obvious to the users what these settings are set to.
Additionally, users might not be aware of the settings existence.
On top of that, since 6.1, the default model_memory_limit was lowered
from 4GB to 1GB. For BWC, this meant that jobs where model_memory_limit
is null, the default of 4GB applies. Jobs that were created from 6.1
onwards, contain an explicit setting for model_memory_limit, which is
1GB unless the user sets it differently. This adds additional confusion.
This commit makes analysis limits an always explicit setting on the job.
Regardless of whether the user sets custom limits or not, the job object
(and response) will contain the full analysis limits values.
The possibilities for interpretation of missing values are:
- the entire analysis_limits is null: this may only happen for jobs
created prior to 6.1. Thus we set the model_memory_limit to 4GB.
- analysis_limits are non-null but model_memory_limit is: this also
may only happen for jobs prior to 6.1. Again, we set memory limit to
4GB.
- model_memory_limit is non-null: this either means the user set an
explicit value or the job was created from 6.1 onwards and it has
the explicit default of 1GB. We simply keep the given value.
For categorization_examples_limit the default has always been 4, so
we fill that in when it's missing.
Finally, note that we still need to handle potential null values
for the situation of a mixed cluster.
Original commit: elastic/x-pack-elasticsearch@5b6994ef750298a829dd2995664470cd4cc95e07
2018-02-27 12:49:05 -05:00
|
|
|
"model_memory_limit": "1024mb",
|
|
|
|
"categorization_examples_limit": 4
|
2017-04-04 18:26:39 -04:00
|
|
|
},
|
|
|
|
"data_description": {
|
2018-02-09 12:16:24 -05:00
|
|
|
"time_field": "timestamp",
|
2017-04-04 18:26:39 -04:00
|
|
|
"time_format": "epoch_ms"
|
|
|
|
},
|
|
|
|
"model_snapshot_retention_days": 1,
|
|
|
|
"results_index_name": "shared"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
----
|
2018-02-09 12:16:24 -05:00
|
|
|
// TESTRESPONSE[s/"7.0.0-alpha1"/$body.$_path/]
|
|
|
|
// TESTRESPONSE[s/1517011406091/$body.$_path/]
|