2017-06-19 21:23:58 -04:00
|
|
|
[role="xpack"]
|
2018-08-31 19:49:24 -04:00
|
|
|
[testenv="platinum"]
|
2017-04-04 18:26:39 -04:00
|
|
|
[[ml-valid-job]]
|
2017-12-14 13:52:49 -05:00
|
|
|
=== Validate Jobs API
|
|
|
|
++++
|
|
|
|
<titleabbrev>Validate Jobs</titleabbrev>
|
|
|
|
++++
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2018-06-13 16:37:35 -04:00
|
|
|
Validates job configuration information.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-06-06 16:42:47 -04:00
|
|
|
==== Request
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
`POST _xpack/ml/anomaly_detectors/_validate`
|
|
|
|
|
2017-06-06 16:42:47 -04:00
|
|
|
==== Description
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2018-01-15 11:44:08 -05:00
|
|
|
The validate jobs API enables you validate the job configuration before you
|
|
|
|
create the job.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
|
2017-06-06 16:42:47 -04:00
|
|
|
==== Request Body
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-11 21:52:47 -04:00
|
|
|
For a list of the properties that you can specify in the body of this API,
|
|
|
|
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 `manage_ml`, or `manage` cluster privileges to use this API.
|
2017-06-19 21:23:58 -04:00
|
|
|
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
|
|
|
|
2017-04-06 10:56:46 -04:00
|
|
|
The following example validates job configuration information:
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2017-04-06 10:56:46 -04:00
|
|
|
POST _xpack/ml/anomaly_detectors/_validate
|
2017-04-04 18:26:39 -04:00
|
|
|
{
|
2017-04-06 10:56:46 -04:00
|
|
|
"description" : "Unusual response times by airlines",
|
|
|
|
"analysis_config" : {
|
|
|
|
"bucket_span": "300S",
|
|
|
|
"detectors" :[
|
|
|
|
{
|
2017-04-11 21:52:47 -04:00
|
|
|
"function": "metric",
|
|
|
|
"field_name": "responsetime",
|
|
|
|
"by_field_name": "airline"}],
|
|
|
|
"influencers": [ "airline" ]
|
2017-04-06 10:56:46 -04:00
|
|
|
},
|
|
|
|
"data_description" : {
|
2017-04-11 21:52:47 -04:00
|
|
|
"time_field": "time",
|
|
|
|
"time_format": "yyyy-MM-dd'T'HH:mm:ssX"
|
2017-04-06 10:56:46 -04:00
|
|
|
}
|
2017-04-04 18:26:39 -04:00
|
|
|
}
|
|
|
|
--------------------------------------------------
|
|
|
|
// CONSOLE
|
2018-08-31 19:49:24 -04:00
|
|
|
// TEST[skip:needs-licence]
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-06 10:56:46 -04:00
|
|
|
When the validation is complete, you receive the following results:
|
2017-04-21 11:23:27 -04:00
|
|
|
[source,js]
|
2017-04-04 18:26:39 -04:00
|
|
|
----
|
|
|
|
{
|
2017-04-06 10:56:46 -04:00
|
|
|
"acknowledged": true
|
2017-04-04 18:26:39 -04:00
|
|
|
}
|
|
|
|
----
|
2018-06-19 11:49:32 -04:00
|
|
|
// TESTRESPONSE
|