-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathnodes.info.json
93 lines (93 loc) · 2.81 KB
/
nodes.info.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"nodes.info": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/cluster-nodes-info.html",
"description": "Returns information about nodes in the cluster."
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_nodes",
"methods": ["GET"]
},
{
"path": "/_nodes/{node_id}",
"methods": ["GET"],
"parts": {
"node_id": {
"type": "list",
"description": "A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes"
}
}
},
{
"path": "/_nodes/{metric}",
"methods": ["GET"],
"parts": {
"metric": {
"type": "list",
"options": [
"settings",
"os",
"process",
"jvm",
"thread_pool",
"transport",
"http",
"plugins",
"ingest",
"indices",
"aggregations"
],
"description": "A comma-separated list of metrics you wish returned. Leave empty to return all metrics."
}
}
},
{
"path": "/_nodes/{node_id}/{metric}",
"methods": ["GET"],
"parts": {
"node_id": {
"type": "list",
"description": "A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes"
},
"metric": {
"type": "list",
"options": [
"settings",
"os",
"process",
"jvm",
"thread_pool",
"transport",
"http",
"plugins",
"ingest",
"indices",
"aggregations",
"_all",
"_none"
],
"description": "A comma-separated list of metrics you wish returned. Use `_all` to retrieve all metrics and `_none` to retrieve the node identity without any additional metrics."
}
}
}
]
},
"params": {
"flat_settings": {
"type": "boolean",
"description": "Return settings in flat format (default: false)"
},
"timeout": {
"type": "time",
"description": "Explicit operation timeout"
}
}
}
}