[DOCS] CCS stats median should be average #126660
Labels
>docs
General docs changes
:Search Foundations/CCS
Team:Docs
Meta label for docs team
Team:Search Foundations
Meta label for the Search Foundations team in Elasticsearch
Elasticsearch Version
8.16+
Installed Plugins
Java Version
bundled
OS Version
Problem Description
In the official documentation about the Cluster Stats API, the response contains different
*.took*.avg
values in thecss._search
section that are described asmedian
instead ofaverage
. Median and average are different, and it was confirmed that the actual value behind theavg
value is truly an average and not a median.Hence, we should correct the following fields descriptions:
ccs._search.took.avg
: (integer) The average time taken to execute a cross-cluster search request, in milliseconds.ccs._search.took_mrt_true.avg
: (integer) The average time taken to execute a cross-cluster search request, in milliseconds.ccs._search.took_mrt_false.avg
: (integer) The average time taken to execute a cross-cluster search request, in milliseconds.ccs._search.clusters.took.avg
: (integer) The average time taken to execute a cross-cluster search request, in milliseconds.Another field called
remotes_per_search_avg
is properly defined asThe average number of remote clusters that were queried in a single cross-cluster search request
, so all*avg
fields should have a consistent description.Steps to Reproduce
Go to the Cluster Stats API documentation
Logs (if relevant)
None
The text was updated successfully, but these errors were encountered: