节点功能使用 API
编辑节点功能使用 API编辑
返回有关功能使用情况的信息。
请求编辑
GET /_nodes/usage
GET /_nodes/<node_id>/usage
GET /_nodes/usage/<metric>
GET /_nodes/<node_id>/usage/<metric>
路径参数编辑
-
<metric>
-
(可选,字符串)将返回的信息限制为特定的指标。以下选项的逗号分隔列表
-
_all
- 返回所有统计信息。
-
rest_actions
- 返回 REST 操作类名,以及该操作在节点上被调用的次数。
-
-
<node_id>
- (可选,字符串)用于限制返回信息的节点 ID 或名称的逗号分隔列表。
查询参数编辑
示例编辑
Rest 操作示例
response = client.nodes.usage puts response
GET _nodes/usage
API 返回以下响应
{ "_nodes": { "total": 1, "successful": 1, "failed": 0 }, "cluster_name": "my_cluster", "nodes": { "pQHNt5rXTTWNvUgOrdynKg": { "timestamp": 1492553961812, "since": 1492553906606, "rest_actions": { "nodes_usage_action": 1, "create_index_action": 1, "document_get_action": 1, "search_action": 19, "nodes_info_action": 36 }, "aggregations": { ... } } } }