mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 10:25:15 +00:00
[DOCS] Fix HTTP endpoints after stats API changes
This commit is contained in:
parent
3262398347
commit
7042a9aa65
@ -15,17 +15,17 @@ example, here are some sample executions of nodes info:
|
||||
[source,js]
|
||||
--------------------------------------------------
|
||||
# Local
|
||||
curl localhost:9200/_cluster/nodes/_local
|
||||
curl localhost:9200/_nodes/_local
|
||||
# Address
|
||||
curl localhost:9200/_cluster/nodes/10.0.0.3,10.0.0.4
|
||||
curl localhost:9200/_cluster/nodes/10.0.0.*
|
||||
curl localhost:9200/_nodes/10.0.0.3,10.0.0.4
|
||||
curl localhost:9200/_nodes/10.0.0.*
|
||||
# Names
|
||||
curl localhost:9200/_cluster/nodes/node_name_goes_here
|
||||
curl localhost:9200/_cluster/nodes/node_name_goes_*
|
||||
curl localhost:9200/_nodes/node_name_goes_here
|
||||
curl localhost:9200/_nodes/node_name_goes_*
|
||||
# Attributes (set something like node.rack: 2 in the config)
|
||||
curl localhost:9200/_cluster/nodes/rack:2
|
||||
curl localhost:9200/_cluster/nodes/ra*:2
|
||||
curl localhost:9200/_cluster/nodes/ra*:2*
|
||||
curl localhost:9200/_nodes/rack:2
|
||||
curl localhost:9200/_nodes/ra*:2
|
||||
curl localhost:9200/_nodes/ra*:2*
|
||||
--------------------------------------------------
|
||||
--
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user