diff --git a/docs/reference/esql/functions/grouping-functions.asciidoc b/docs/reference/esql/functions/grouping-functions.asciidoc index 3290e990bcaa9..927aa391c9019 100644 --- a/docs/reference/esql/functions/grouping-functions.asciidoc +++ b/docs/reference/esql/functions/grouping-functions.asciidoc @@ -9,7 +9,7 @@ The <> command supports these grouping functions: // tag::group_list[] * <> -* experimental:[] <> NOTE: Requires a https://www.elastic.co/subscriptions[platinum license]. +* <> NOTE: Requires a https://www.elastic.co/subscriptions[platinum license]. // end::group_list[] include::layout/bucket.asciidoc[] diff --git a/docs/reference/esql/functions/kibana/definition/categorize.json b/docs/reference/esql/functions/kibana/definition/categorize.json index ed5fa15232b85..3be2c0aefd1d5 100644 --- a/docs/reference/esql/functions/kibana/definition/categorize.json +++ b/docs/reference/esql/functions/kibana/definition/categorize.json @@ -32,6 +32,6 @@ "examples" : [ "FROM sample_data\n| STATS count=COUNT() BY category=CATEGORIZE(message)" ], - "preview" : true, + "preview" : false, "snapshot_only" : false } diff --git a/docs/reference/esql/functions/layout/categorize.asciidoc b/docs/reference/esql/functions/layout/categorize.asciidoc index 4075949ab4d12..e3f599e319f23 100644 --- a/docs/reference/esql/functions/layout/categorize.asciidoc +++ b/docs/reference/esql/functions/layout/categorize.asciidoc @@ -4,8 +4,6 @@ [[esql-categorize]] === `CATEGORIZE` -preview::["Do not use on production environments. This functionality is in technical preview and may be changed or removed in a future release. Elastic will work to fix any issues, but features in technical preview are not subject to the support SLA of official GA features."] - *Syntax* [.text-center] diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/grouping/Categorize.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/grouping/Categorize.java index f3624a25640b2..3bbf48a5c907e 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/grouping/Categorize.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/grouping/Categorize.java @@ -62,7 +62,7 @@ public class Categorize extends GroupingFunction.NonEvaluatableGroupingFunction tag = "docsCategorize", description = "This example categorizes server logs messages into categories and aggregates their counts. " ) }, - preview = true + preview = false ) public Categorize( Source source,