Browse Source

[docs] Indices stats groups in nodes api

Closes #5349
Nik Everett 11 years ago
parent
commit
1df942b463
1 changed files with 16 additions and 0 deletions
  1. 16 0
      docs/reference/cluster/nodes-stats.asciidoc

+ 16 - 0
docs/reference/cluster/nodes-stats.asciidoc

@@ -91,3 +91,19 @@ curl localhost:9200/_stats/fielddata/field1,field2?pretty
 curl localhost:9200/_stats/fielddata/field*?pretty
 curl localhost:9200/_nodes/stats/indices/field*?pretty
 --------------------------------------------------
+
+[float]
+[[search-groups]]
+=== Search groups
+
+You can get statistics about search groups for searches executed
+on this node.
+
+[source,js]
+--------------------------------------------------
+# All groups with all stats
+curl localhost:9200/_nodes/stats?pretty&groups=_all
+
+# Some groups from just the indices stats
+curl localhost:9200/_nodes/stats/indices?pretty&groups=foo,bar
+--------------------------------------------------