From 09c5fbfd0009e1cc08ea564fd1f0399db4dbc2c2 Mon Sep 17 00:00:00 2001 From: Suhas Karanth Date: Wed, 10 May 2017 00:48:43 +0530 Subject: [PATCH] Docs: Correct description of example (#24541) Copy and paste error. --- .../pipeline/extended-stats-bucket-aggregation.asciidoc | 2 +- .../pipeline/percentiles-bucket-aggregation.asciidoc | 2 +- .../aggregations/pipeline/stats-bucket-aggregation.asciidoc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/reference/aggregations/pipeline/extended-stats-bucket-aggregation.asciidoc b/docs/reference/aggregations/pipeline/extended-stats-bucket-aggregation.asciidoc index a7c1ab6b3dc..c6a3bb56765 100644 --- a/docs/reference/aggregations/pipeline/extended-stats-bucket-aggregation.asciidoc +++ b/docs/reference/aggregations/pipeline/extended-stats-bucket-aggregation.asciidoc @@ -33,7 +33,7 @@ A `extended_stats_bucket` aggregation looks like this in isolation: |`sigma` |The number of standard deviations above/below the mean to display |Optional | 2 |=== -The following snippet calculates the sum of all the total monthly `sales` buckets: +The following snippet calculates the extended stats for monthly `sales` bucket: [source,js] -------------------------------------------------- diff --git a/docs/reference/aggregations/pipeline/percentiles-bucket-aggregation.asciidoc b/docs/reference/aggregations/pipeline/percentiles-bucket-aggregation.asciidoc index b65f8c3be79..f386af209b1 100644 --- a/docs/reference/aggregations/pipeline/percentiles-bucket-aggregation.asciidoc +++ b/docs/reference/aggregations/pipeline/percentiles-bucket-aggregation.asciidoc @@ -31,7 +31,7 @@ A `percentiles_bucket` aggregation looks like this in isolation: |`percents` |The list of percentiles to calculate |Optional | `[ 1, 5, 25, 50, 75, 95, 99 ]` |=== -The following snippet calculates the sum of all the total monthly `sales` buckets: +The following snippet calculates the percentiles for the total monthly `sales` buckets: [source,js] -------------------------------------------------- diff --git a/docs/reference/aggregations/pipeline/stats-bucket-aggregation.asciidoc b/docs/reference/aggregations/pipeline/stats-bucket-aggregation.asciidoc index 5cbfe53f90e..b4131ef4944 100644 --- a/docs/reference/aggregations/pipeline/stats-bucket-aggregation.asciidoc +++ b/docs/reference/aggregations/pipeline/stats-bucket-aggregation.asciidoc @@ -30,7 +30,7 @@ A `stats_bucket` aggregation looks like this in isolation: |`format` |format to apply to the output value of this aggregation |Optional | `null` |=== -The following snippet calculates the sum of all the total monthly `sales` buckets: +The following snippet calculates the stats for monthly `sales`: [source,js] --------------------------------------------------