From 4ff2093fe4679f6a1899d21d7858ba8901396d59 Mon Sep 17 00:00:00 2001 From: Jan Kuipers Date: Wed, 18 Jun 2025 12:31:36 +0200 Subject: [PATCH] Fix ES|QL change_point docs --- .../processing-commands/change_point.asciidoc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/reference/esql/processing-commands/change_point.asciidoc b/docs/reference/esql/processing-commands/change_point.asciidoc index 4fd1f5ed6ff4d..0e4f7f9cf8ea3 100644 --- a/docs/reference/esql/processing-commands/change_point.asciidoc +++ b/docs/reference/esql/processing-commands/change_point.asciidoc @@ -20,17 +20,17 @@ CHANGE_POINT value [ON key] [AS type_name, pvalue_name] *Parameters* -`value` -: The column with the metric in which you want to detect a change point. +`value`:: +The column with the metric in which you want to detect a change point. -`key` -: The column with the key to order the values by. If not specified, `@timestamp` is used. +`key`:: +The column with the key to order the values by. If not specified, `@timestamp` is used. -`type_name` -: The name of the output column with the change point type. If not specified, `type` is used. +`type_name`:: +The name of the output column with the change point type. If not specified, `type` is used. -`pvalue_name` -: The name of the output column with the p-value that indicates how extreme the change point is. If not specified, `pvalue` is used. +`pvalue_name`:: +The name of the output column with the p-value that indicates how extreme the change point is. If not specified, `pvalue` is used. [NOTE] ====