* Refactor ML section - local and remote models Signed-off-by: Fanit Kolchina <[email protected]> * Added command to calculate checksum Signed-off-by: Fanit Kolchina <[email protected]> * Add ONNX format to register API Signed-off-by: Fanit Kolchina <[email protected]> * Add sparse encoding predict example Signed-off-by: Fanit Kolchina <[email protected]> * Add API section Signed-off-by: Fanit Kolchina <[email protected]> * Refactor the API section Signed-off-by: Fanit Kolchina <[email protected]> * Typo Signed-off-by: Fanit Kolchina <[email protected]> * Implemented Vale comments Signed-off-by: Fanit Kolchina <[email protected]> * Add get connector API Signed-off-by: Fanit Kolchina <[email protected]> * Reword heading Signed-off-by: Fanit Kolchina <[email protected]> * Addressed tech review comments Signed-off-by: Fanit Kolchina <[email protected]> * Apply suggestions from code review Co-authored-by: Melissa Vagi <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> --------- Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Co-authored-by: Melissa Vagi <[email protected]>
1.3 KiB
1.3 KiB
layout, title, parent, nav_order
| layout | title | parent | nav_order |
|---|---|---|---|
| default | Stats | ML Commons API | 50 |
Stats
Gets statistics related to the number of tasks.
Path and HTTP methods
GET /_plugins/_ml/stats
GET /_plugins/_ml/stats/<stat>
GET /_plugins/_ml/<nodeId>/stats/
GET /_plugins/_ml/<nodeId>/stats/<stat>
Example request: Get all stats for all nodes
GET /_plugins/_ml/stats
{% include copy-curl.html %}
Example response
{
"zbduvgCCSOeu6cfbQhTpnQ" : {
"ml_executing_task_count" : 0
},
"54xOe0w8Qjyze00UuLDfdA" : {
"ml_executing_task_count" : 0
},
"UJiykI7bTKiCpR-rqLYHyw" : {
"ml_executing_task_count" : 0
},
"zj2_NgIbTP-StNlGZJlxdg" : {
"ml_executing_task_count" : 0
},
"jjqFrlW7QWmni1tRnb_7Dg" : {
"ml_executing_task_count" : 0
},
"3pSSjl5PSVqzv5-hBdFqyA" : {
"ml_executing_task_count" : 0
},
"A_IiqoloTDK01uZvCjREaA" : {
"ml_executing_task_count" : 0
}
}
Example request: Get all stats for a specific node
GET /_plugins/_ml/<nodeId>/stats/
{% include copy-curl.html %}
Example request: Get a specified stat for a specific node
GET /_plugins/_ml/<nodeId>/stats/<stat>
{% include copy-curl.html %}
Example request: Get a specified stat for all nodes
GET /_plugins/_ml/stats/<stat>
{% include copy-curl.html %}