Skip to content

Commit

Permalink
Move short description
Browse files Browse the repository at this point in the history
  • Loading branch information
nik9000 committed Jul 11, 2024
1 parent d3824ce commit e1bea2f
Show file tree
Hide file tree
Showing 15 changed files with 43 additions and 43 deletions.
6 changes: 3 additions & 3 deletions docs/reference/esql/processing-commands/dissect.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
[[esql-dissect]]
=== `DISSECT`

`DISSECT` enables you to <<esql-process-data-with-dissect-and-grok,extract
structured data out of a string>>.

**Syntax**

[source,esql]
----
DISSECT input "pattern" [APPEND_SEPARATOR="<separator>"]
----

`DISSECT` enables you to <<esql-process-data-with-dissect-and-grok,extract
structured data out of a string>>.

*Parameters*

`input`::
Expand Down
6 changes: 3 additions & 3 deletions docs/reference/esql/processing-commands/enrich.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
[[esql-enrich]]
=== `ENRICH`

`ENRICH` enables you to add data from existing indices as new columns using an
enrich policy.

**Syntax**

[source,esql]
----
ENRICH policy [ON match_field] [WITH [new_name1 = ]field1, [new_name2 = ]field2, ...]
----

`ENRICH` enables you to add data from existing indices as new columns using an
enrich policy.

*Parameters*

`policy`::
Expand Down
6 changes: 3 additions & 3 deletions docs/reference/esql/processing-commands/eval.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
[[esql-eval]]
=== `EVAL`

The `EVAL` processing command enables you to append new columns with calculated
values.

**Syntax**

[source,esql]
----
EVAL [column1 =] value1[, ..., [columnN =] valueN]
----

The `EVAL` processing command enables you to append new columns with calculated
values.

*Parameters*

`columnX`::
Expand Down
6 changes: 3 additions & 3 deletions docs/reference/esql/processing-commands/grok.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
[[esql-grok]]
=== `GROK`

`GROK` enables you to <<esql-process-data-with-dissect-and-grok,extract
structured data out of a string>>.

**Syntax**

[source,esql]
----
GROK input "pattern"
----

`GROK` enables you to <<esql-process-data-with-dissect-and-grok,extract
structured data out of a string>>.

*Parameters*

`input`::
Expand Down
6 changes: 3 additions & 3 deletions docs/reference/esql/processing-commands/keep.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
[[esql-keep]]
=== `KEEP`

The `KEEP` processing command enables you to specify what columns are returned
and the order in which they are returned.

**Syntax**

[source,esql]
----
KEEP columns
----

The `KEEP` processing command enables you to specify what columns are returned
and the order in which they are returned.

*Parameters*

`columns`::
Expand Down
6 changes: 3 additions & 3 deletions docs/reference/esql/processing-commands/limit.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
[[esql-limit]]
=== `LIMIT`

The `LIMIT` processing command enables you to limit the number of rows that are
returned.

**Syntax**

[source,esql]
----
LIMIT max_number_of_rows
----

The `LIMIT` processing command enables you to limit the number of rows that are
returned.

*Parameters*

`max_number_of_rows`::
Expand Down
6 changes: 3 additions & 3 deletions docs/reference/esql/processing-commands/lookup.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@

experimental::["LOOKUP is a highly experimental and only available in SNAPSHOT versions."]

`LOOKUP` matches values from the input against a `table` provided in the request,
adding the other fields from the `table` to the output.

**Syntax**

[source,esql]
----
LOOKUP table ON match_field1[, match_field2, ...]
----

`LOOKUP` matches values from the input against a `table` provided in the request,
adding the other fields from the `table` to the output.

*Parameters*

`table`::
Expand Down
6 changes: 3 additions & 3 deletions docs/reference/esql/processing-commands/mv_expand.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@

preview::[]

The `MV_EXPAND` processing command expands multivalued columns into one row per
value, duplicating other columns.

**Syntax**

[source,esql]
----
MV_EXPAND column
----

The `MV_EXPAND` processing command expands multivalued columns into one row per
value, duplicating other columns.

*Parameters*

`column`::
Expand Down
4 changes: 2 additions & 2 deletions docs/reference/esql/processing-commands/rename.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
[[esql-rename]]
=== `RENAME`

The `RENAME` processing command renames one or more columns.

**Syntax**

[source,esql]
----
RENAME old_name1 AS new_name1[, ..., old_nameN AS new_nameN]
----

The `RENAME` processing command renames one or more columns.

*Parameters*

`old_nameX`::
Expand Down
4 changes: 2 additions & 2 deletions docs/reference/esql/processing-commands/sort.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
[[esql-sort]]
=== `SORT`

The `SORT` processing command sorts a table on one or more columns.

**Syntax**

[source,esql]
----
SORT column1 [ASC/DESC][NULLS FIRST/NULLS LAST][, ..., columnN [ASC/DESC][NULLS FIRST/NULLS LAST]]
----

The `SORT` processing command sorts a table on one or more columns.

*Parameters*

`columnX`::
Expand Down
6 changes: 3 additions & 3 deletions docs/reference/esql/processing-commands/stats.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
[[esql-stats-by]]
=== `STATS ... BY`

The `STATS ... BY` processing command groups rows according to a common value
and calculate one or more aggregated values over the grouped rows.

**Syntax**

[source,esql]
Expand All @@ -10,9 +13,6 @@ STATS [column1 =] expression1[, ..., [columnN =] expressionN]
[BY grouping_expression1[, ..., grouping_expressionN]]
----

The `STATS ... BY` processing command groups rows according to a common value
and calculate one or more aggregated values over the grouped rows.

*Parameters*

`columnX`::
Expand Down
6 changes: 3 additions & 3 deletions docs/reference/esql/processing-commands/where.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
[[esql-where]]
=== `WHERE`

The `WHERE` processing command produces a table that contains all the rows from
the input table for which the provided condition evaluates to `true`.

**Syntax**

[source,esql]
----
WHERE expression
----

The `WHERE` processing command produces a table that contains all the rows from
the input table for which the provided condition evaluates to `true`.

*Parameters*

`expression`::
Expand Down
6 changes: 3 additions & 3 deletions docs/reference/esql/source-commands/from.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
[[esql-from]]
=== `FROM`

The `FROM` source command returns a table with data from a data stream, index,
or alias.

**Syntax**

[source,esql]
----
FROM index_pattern [METADATA fields]
----

The `FROM` source command returns a table with data from a data stream, index,
or alias.

*Parameters*

`index_pattern`::
Expand Down
6 changes: 3 additions & 3 deletions docs/reference/esql/source-commands/row.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
[[esql-row]]
=== `ROW`

The `ROW` source command produces a row with one or more columns with values
that you specify. This can be useful for testing.

**Syntax**

[source,esql]
----
ROW column1 = value1[, ..., columnN = valueN]
----

The `ROW` source command produces a row with one or more columns with values
that you specify. This can be useful for testing.

*Parameters*

`columnX`::
Expand Down
6 changes: 3 additions & 3 deletions docs/reference/esql/source-commands/show.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
[[esql-show]]
=== `SHOW`

The `SHOW` source command returns information about the deployment and
its capabilities.

**Syntax**

[source,esql]
----
SHOW item
----

The `SHOW` source command returns information about the deployment and
its capabilities.

*Parameters*

`item`::
Expand Down

0 comments on commit e1bea2f

Please sign in to comment.