2013-05-24 06:02:42 -04:00
|
|
|
{
|
|
|
|
"cluster.node.stats": {
|
|
|
|
"documentation": "http://elasticsearch.org/guide/reference/api/admin-cluster-nodes-stats/",
|
|
|
|
"methods": ["GET"],
|
|
|
|
"url": {
|
|
|
|
"path": "/_cluster/nodes/stats",
|
2013-05-26 08:03:25 -04:00
|
|
|
"paths": [
|
|
|
|
"/_cluster/nodes/stats",
|
|
|
|
"/_cluster/nodes/{nodeId}/stats",
|
|
|
|
"/_nodes/stats",
|
|
|
|
"/_nodes/{nodeId}/stats",
|
|
|
|
"/_nodes/stats/{metric_family}",
|
|
|
|
"/_nodes/{nodeId}/stats/{metric_family}",
|
|
|
|
"/_nodes/{metric_family}/stats",
|
|
|
|
"/_nodes/{nodeId}/{metric_family}/stats",
|
|
|
|
"/_nodes/stats/indices/{metric}/{fields}",
|
|
|
|
"/_nodes/{nodeId}/stats/indices/{metric}/{fields}",
|
|
|
|
"/_nodes/indices/{metric}/{fields}/stats",
|
|
|
|
"/_nodes/{nodeId}/indices/{metric}/{fields}/stats"
|
|
|
|
],
|
2013-05-24 06:02:42 -04:00
|
|
|
"parts": {
|
2013-05-26 08:03:25 -04:00
|
|
|
"fields" : {
|
|
|
|
"type" : "list",
|
|
|
|
"description" : "A comma-separated list of fields to return detailed information for, when returning the `indices` metric family (supports wildcards)"
|
|
|
|
},
|
|
|
|
"metric_family" : {
|
|
|
|
"type" : "enum",
|
|
|
|
"values" : ["all","fs","http","indices","jvm","network","os","process","thread_pool","transport"],
|
|
|
|
"description" : "Limit the information returned to certain metric family"
|
|
|
|
},
|
|
|
|
"metric" : {
|
|
|
|
"type" : "enum",
|
|
|
|
"values" : ["docs", "fielddata", "filter_cache", "flush", "get", "id_cache", "indexing", "merges", "refresh", "search", "store", "warmer"],
|
|
|
|
"description" : "Limit the information returned for `indices` family to a specifi metric"
|
2013-05-26 06:20:43 -04:00
|
|
|
},
|
|
|
|
"nodeId": {
|
2013-05-26 08:03:25 -04:00
|
|
|
"type" : "list",
|
|
|
|
"description" : "A comma-separated list of nodes to limit the returned information"
|
2013-05-24 06:02:42 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"params": {
|
2013-05-26 06:20:43 -04:00
|
|
|
"all": {
|
2013-05-26 08:03:25 -04:00
|
|
|
"type" : "boolean",
|
|
|
|
"description" : "Return all available information"
|
2013-05-26 06:20:43 -04:00
|
|
|
},
|
2013-05-24 06:02:42 -04:00
|
|
|
"clear": {
|
2013-05-26 08:03:25 -04:00
|
|
|
"type" : "boolean",
|
|
|
|
"description" : "Reset the default level of detail"
|
2013-05-24 06:02:42 -04:00
|
|
|
},
|
2013-05-26 06:20:43 -04:00
|
|
|
"fields": {
|
2013-05-26 08:03:25 -04:00
|
|
|
"type" : "list",
|
|
|
|
"description" : "A comma-separated list of fields for `fielddata` metric (supports wildcards)"
|
2013-05-24 06:02:42 -04:00
|
|
|
},
|
2013-05-26 06:20:43 -04:00
|
|
|
"fs": {
|
2013-05-26 08:03:25 -04:00
|
|
|
"type" : "boolean",
|
|
|
|
"description" : "Return information about the filesystem"
|
2013-05-24 06:02:42 -04:00
|
|
|
},
|
2013-05-26 06:20:43 -04:00
|
|
|
"http": {
|
2013-05-26 08:03:25 -04:00
|
|
|
"type" : "boolean",
|
|
|
|
"description" : "Return information about HTTP"
|
2013-05-24 06:02:42 -04:00
|
|
|
},
|
2013-05-26 06:20:43 -04:00
|
|
|
"indices": {
|
2013-05-26 08:03:25 -04:00
|
|
|
"type" : "boolean",
|
|
|
|
"description" : "Return information about indices"
|
2013-05-24 06:02:42 -04:00
|
|
|
},
|
|
|
|
"jvm": {
|
2013-05-26 08:03:25 -04:00
|
|
|
"type" : "boolean",
|
|
|
|
"description" : "Return information about the JVM"
|
2013-05-24 06:02:42 -04:00
|
|
|
},
|
|
|
|
"network": {
|
2013-05-26 08:03:25 -04:00
|
|
|
"type" : "boolean",
|
|
|
|
"description" : "Return information about network"
|
2013-05-24 06:02:42 -04:00
|
|
|
},
|
2013-05-26 06:20:43 -04:00
|
|
|
"os": {
|
2013-05-26 08:03:25 -04:00
|
|
|
"type" : "boolean",
|
|
|
|
"description" : "Return information about the operating system"
|
2013-05-24 06:02:42 -04:00
|
|
|
},
|
2013-05-26 06:20:43 -04:00
|
|
|
"process": {
|
2013-05-26 08:03:25 -04:00
|
|
|
"type" : "boolean",
|
|
|
|
"description" : "Return information about the Elasticsearch process"
|
2013-05-24 06:02:42 -04:00
|
|
|
},
|
2013-05-26 06:20:43 -04:00
|
|
|
"thread_pool": {
|
2013-05-26 08:03:25 -04:00
|
|
|
"type" : "boolean",
|
|
|
|
"description" : "Return information about the thread pool"
|
2013-05-24 06:02:42 -04:00
|
|
|
},
|
2013-05-26 06:20:43 -04:00
|
|
|
"transport": {
|
2013-05-26 08:03:25 -04:00
|
|
|
"type" : "boolean",
|
|
|
|
"description" : "Return information about transport"
|
2013-05-24 06:02:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"body": null
|
|
|
|
}
|
|
|
|
}
|