[docs] Indices stats groups in nodes api

Closes #5349
This commit is contained in:
Nik Everett 2014-03-05 15:02:14 -05:00 committed by Clinton Gormley
parent d570d588a8
commit 1df942b463
1 changed files with 16 additions and 0 deletions

View File

@ -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
--------------------------------------------------