1
0
Эх сурвалжийг харах

[Docs] fix curl examples in Nodes Stats docs

Closes #9118
Mikhail Korobov 10 жил өмнө
parent
commit
707025fb7a

+ 6 - 6
docs/reference/cluster/nodes-stats.asciidoc

@@ -82,14 +82,14 @@ level or on index level.
 [source,js]
 [source,js]
 --------------------------------------------------
 --------------------------------------------------
 # Node Stats
 # Node Stats
-curl localhost:9200/_nodes/stats/indices/?fields=field1,field2&pretty
+curl -XGET 'http://localhost:9200/_nodes/stats/indices/?fields=field1,field2&pretty'
 
 
 # Indices Stat
 # Indices Stat
-curl localhost:9200/_stats/fielddata/?fields=field1,field2&pretty
+curl -XGET 'http://localhost:9200/_stats/fielddata/?fields=field1,field2&pretty'
 
 
 # You can use wildcards for field names
 # You can use wildcards for field names
-curl localhost:9200/_stats/fielddata/?fields=field*&pretty
-curl localhost:9200/_nodes/stats/indices/?fields=field*&pretty
+curl -XGET 'http://localhost:9200/_stats/fielddata/?fields=field*&pretty'
+curl -XGET 'http://localhost:9200/_nodes/stats/indices/?fields=field*&pretty'
 --------------------------------------------------
 --------------------------------------------------
 
 
 [float]
 [float]
@@ -102,8 +102,8 @@ on this node.
 [source,js]
 [source,js]
 --------------------------------------------------
 --------------------------------------------------
 # All groups with all stats
 # All groups with all stats
-curl localhost:9200/_nodes/stats?pretty&groups=_all
+curl -XGET 'http://localhost:9200/_nodes/stats?pretty&groups=_all'
 
 
 # Some groups from just the indices stats
 # Some groups from just the indices stats
-curl localhost:9200/_nodes/stats/indices?pretty&groups=foo,bar
+curl -XGET 'http://localhost:9200/_nodes/stats/indices?pretty&groups=foo,bar'
 --------------------------------------------------
 --------------------------------------------------