Path parameters

  • model_idstring | array[string] Required

    The unique identifier of the trained model or a model alias. It can be a comma-separated list or a wildcard expression.

Query parameters

  • Specifies what to do when the request:

    • Contains wildcard expressions and there are no models that match.
    • Contains the _all string or no identifiers and there are no matches.
    • Contains wildcard expressions and there are only partial matches.

    If true, it returns an empty array when there are no matches and the subset of results when there are partial matches.

  • fromnumber

    Skips the specified number of models.

  • sizenumber

    Specifies the maximum number of models to obtain.

Responses

GET /_ml/trained_models/{model_id}/_stats
GET _ml/trained_models/_stats
resp = client.ml.get_trained_models_stats()
const response = await client.ml.getTrainedModelsStats();
response = client.ml.get_trained_models_stats
$resp = $client->ml()->getTrainedModelsStats();
curl -X GET -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/_ml/trained_models/_stats"