Get trained models usage info Generally available; Added in 7.10.0
All methods and paths for this operation:
GET /_ml/trained_models/_stats
GET /_ml/trained_models/{model_id}/_stats
You can get usage information for multiple trained models in a single API request by using a comma-separated list of model IDs or a wildcard expression.
Required authorization
- Cluster privileges:
monitor_ml
Path parameters
-
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.
-
Skips the specified number of models.
-
Specifies the maximum number of models to obtain.
GET /_ml/trained_models/{model_id}/_stats
Console
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"
client.ml().getTrainedModelsStats(g -> g);