Path parameters
- id
string Required The ID of the data frame analytics to fetch
Query parameters
- allow_no_match
boolean Whether to ignore if a wildcard expression matches no configs. (This includes
_all
string or when no configs have been specified) - bytes
string The unit in which to display byte values
Values are
b
,kb
,mb
,gb
,tb
, orpb
. - h
string | array[string] Comma-separated list of column names to display.
Values are
assignment_explanation
,ae
,create_time
,ct
,createTime
,description
,d
,dest_index
,di
,destIndex
,failure_reason
,fr
,failureReason
,id
,model_memory_limit
,mml
,modelMemoryLimit
,node.address
,na
,nodeAddress
,node.ephemeral_id
,ne
,nodeEphemeralId
,node.id
,ni
,nodeId
,node.name
,nn
,nodeName
,progress
,p
,source_index
,si
,sourceIndex
,state
,s
,type
,t
,version
, orv
. - s
string | array[string] Comma-separated list of column names or column aliases used to sort the response.
Values are
assignment_explanation
,ae
,create_time
,ct
,createTime
,description
,d
,dest_index
,di
,destIndex
,failure_reason
,fr
,failureReason
,id
,model_memory_limit
,mml
,modelMemoryLimit
,node.address
,na
,nodeAddress
,node.ephemeral_id
,ne
,nodeEphemeralId
,node.id
,ni
,nodeId
,node.name
,nn
,nodeName
,progress
,p
,source_index
,si
,sourceIndex
,state
,s
,type
,t
,version
, orv
. - time
string Unit used to display time values.
Values are
nanos
,micros
,ms
,s
,m
,h
, ord
.
GET _cat/ml/data_frame/analytics?v=true&format=json
resp = client.cat.ml_data_frame_analytics(
v=True,
format="json",
)
const response = await client.cat.mlDataFrameAnalytics({
v: "true",
format: "json",
});
response = client.cat.ml_data_frame_analytics(
v: "true",
format: "json"
)
$resp = $client->cat()->mlDataFrameAnalytics([
"v" => "true",
"format" => "json",
]);
curl -X GET -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/_cat/ml/data_frame/analytics?v=true&format=json"
[
{
"id": "classifier_job_1",
"type": "classification",
"create_time": "2020-02-12T11:49:09.594Z",
"state": "stopped"
},
{
"id": "classifier_job_2",
"type": "classification",
"create_time": "2020-02-12T11:49:14.479Z",
"state": "stopped"
},
{
"id": "classifier_job_3",
"type": "classification",
"create_time": "2020-02-12T11:49:16.928Z",
"state": "stopped"
},
{
"id": "classifier_job_4",
"type": "classification",
"create_time": "2020-02-12T11:49:19.127Z",
"state": "stopped"
},
{
"id": "classifier_job_5",
"type": "classification",
"create_time": "2020-02-12T11:49:21.349Z",
"state": "stopped"
}
]