diff --git a/docs/user/ppl/cmd/bin.rst b/docs/user/ppl/cmd/bin.rst index 9d60f0a494c..258f4b64912 100644 --- a/docs/user/ppl/cmd/bin.rst +++ b/docs/user/ppl/cmd/bin.rst @@ -9,6 +9,11 @@ bin :depth: 2 +.. note:: + + Available since version 3.3 + + Description ============ | The ``bin`` command groups numeric values into buckets of equal intervals, making it useful for creating histograms and analyzing data distribution. It takes a numeric field and generates a new field with values that represent the lower bound of each bucket. diff --git a/docs/user/ppl/cmd/eventstats.rst b/docs/user/ppl/cmd/eventstats.rst index c075d87ce04..f401a0f2d97 100644 --- a/docs/user/ppl/cmd/eventstats.rst +++ b/docs/user/ppl/cmd/eventstats.rst @@ -283,7 +283,10 @@ DISTINCT_COUNT, DC(Since 3.3) Description >>>>>>>>>>> -Usage: DISTINCT_COUNT(expr), DC(expr). Returns the approximate number of distinct values of expr using HyperLogLog++ algorithm. Both ``DISTINCT_COUNT`` and ``DC`` are equivalent and provide the same functionality. +Usage: DISTINCT_COUNT(expr), DC(expr). Returns the approximate number of distinct values using the HyperLogLog++ algorithm. Both functions are equivalent. + +For details on algorithm accuracy and precision control, see the `OpenSearch Cardinality Aggregation documentation `_. + Example:: diff --git a/docs/user/ppl/index.rst b/docs/user/ppl/index.rst index 8d088edc36d..d8d3db16a86 100644 --- a/docs/user/ppl/index.rst +++ b/docs/user/ppl/index.rst @@ -54,6 +54,8 @@ The query start with search command and then flowing a set of command delimited - `appendcol command `_ + - `bin command `_ + - `dedup command `_ - `describe command `_