From 5a0d98c5e59d78ecf436644840cac6134831ad3f Mon Sep 17 00:00:00 2001 From: Zach Brisson <162374237+ZachBrisson-Elastic@users.noreply.github.com> Date: Sun, 23 Feb 2025 17:20:47 -0500 Subject: [PATCH] Update downsample-data-stream.asciidoc to remove `average` from downsampling statistics in documentation Heya Team! I came across a support case where it was discovered "average" statistic has no longer been included in downsampling for a while now. It is possible for customers to calculate it or run the average aggregation against the data, but it will not be displayed as one of the other statistics. It was removed from the documentation for one specific page, but all the other references were leftover. Trying to clean those leftovers up to avoid customer confusion. See https://github.com/elastic/elasticsearch/pull/110189 for original removal. --- docs/reference/indices/downsample-data-stream.asciidoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/reference/indices/downsample-data-stream.asciidoc b/docs/reference/indices/downsample-data-stream.asciidoc index 6354f8e30d254..827c891988b4d 100644 --- a/docs/reference/indices/downsample-data-stream.asciidoc +++ b/docs/reference/indices/downsample-data-stream.asciidoc @@ -12,8 +12,8 @@ For the most up-to-date API details, refer to {api-es}/group/endpoint-data-strea -- Aggregates a time series (TSDS) index and stores -pre-computed statistical summaries (`min`, `max`, `sum`, `value_count` and -`avg`) for each metric field grouped by a configured time interval. For example, +pre-computed statistical summaries (`min`, `max`, `sum`, and `value_count`) +for each metric field grouped by a configured time interval. For example, a TSDS index that contains metrics sampled every 10 seconds can be downsampled to an hourly index. All documents within an hour interval are summarized and stored as a single document in the downsample index. @@ -123,4 +123,4 @@ to aggregate the original time series index. For example, `60m` produces a document for each 60 minute (hourly) interval. This follows standard time formatting syntax as used elsewhere in {es}. + -NOTE: Smaller, more granular intervals take up proportionally more space. \ No newline at end of file +NOTE: Smaller, more granular intervals take up proportionally more space.