[DOCS] Updates 7.x version in data frame analytics API (#44026)
This commit is contained in:
parent
efddbcc1d1
commit
117f14e0ed
|
@ -98,31 +98,33 @@ PUT _ml/data_frame/analytics/loganalytics
|
||||||
}
|
}
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
// CONSOLE
|
// CONSOLE
|
||||||
// TEST[skip:setup:setup_logdata]
|
// TEST[setup:setup_logdata]
|
||||||
|
|
||||||
The API returns the following result:
|
The API returns the following result:
|
||||||
|
|
||||||
[source,js]
|
[source,js]
|
||||||
----
|
----
|
||||||
{
|
{
|
||||||
"id": "loganalytics",
|
"id" : "loganalytics",
|
||||||
"source": {
|
"source" : {
|
||||||
"index": ["logdata"],
|
"index" : [
|
||||||
"query": {
|
"logdata"
|
||||||
"match_all": {}
|
],
|
||||||
}
|
"query" : {
|
||||||
},
|
"match_all" : { }
|
||||||
"dest": {
|
}
|
||||||
"index": "logdata_out",
|
},
|
||||||
"results_field": "ml"
|
"dest" : {
|
||||||
},
|
"index" : "logdata_out",
|
||||||
"analysis": {
|
"results_field" : "ml"
|
||||||
"outlier_detection": {}
|
},
|
||||||
},
|
"analysis" : {
|
||||||
"model_memory_limit": "1gb",
|
"outlier_detection" : { }
|
||||||
"create_time" : 1562265491319,
|
},
|
||||||
"version" : "8.0.0"
|
"model_memory_limit" : "1gb",
|
||||||
|
"create_time" : 1562351429434,
|
||||||
|
"version" : "7.3.0"
|
||||||
}
|
}
|
||||||
----
|
----
|
||||||
// TESTRESPONSE[s/1562265491319/$body.$_path/]
|
// TESTRESPONSE[s/1562351429434/$body.$_path/]
|
||||||
// TESTRESPONSE[s/"version": "8.0.0"/"version": $body.version/]
|
// TESTRESPONSE[s/"version" : "7.3.0"/"version" : $body.version/]
|
Loading…
Reference in New Issue