docs fix for doubleMean description (#11513)

* fix for doubleMean description

* include quantile aggregator description from Suneet

* update hyperlink to quantiles aggregator
This commit is contained in:
Victoria Lim 2021-07-30 12:39:44 -07:00 committed by GitHub
parent 05a7da792f
commit 949484728f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -126,7 +126,9 @@ Computes and stores the sum of values as 32-bit floating point value. Similar to
### `doubleMean` aggregator
Computes and returns arithmetic mean of a column values as 64 bit float value. This is a query time aggregator only and should not be used during indexing.
Computes and returns arithmetic mean of a column values as 64 bit float value. `doubleMean` is a query time aggregator only. It is not available for indexing.
To accomplish mean aggregation on ingestion, refer to the [Quantiles aggregator](../development/extensions-core/datasketches-quantiles.md#aggregator) from the DataSketches extension.
```json
{ "type" : "doubleMean", "name" : <output_name>, "fieldName" : <metric_name> }