Skip to content

Commit f481d95

Browse files
Update links to ESQL reference docs (#1118)
Connected to: #1095 Update links to ESQL reference docs following up on elastic/elasticsearch#126279 that splits the Functions and Operators page into separate pages, one for each group of similar functions and one for the operators. Based on #1072
1 parent 2a396cb commit f481d95

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

explore-analyze/query-filter/languages/esql-getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ FROM sample_data
232232
| EVAL duration_ms = event_duration/1000000.0
233233
```
234234

235-
`EVAL` supports several [functions](elasticsearch://reference/query-languages/esql/esql-functions-operators.md#esql-functions). For example, to round a number to the closest number with the specified number of digits, use the [`ROUND`](elasticsearch://reference/query-languages/esql/functions-operators/math-functions.md#esql-round) function:
235+
`EVAL` supports several [functions](elasticsearch://reference/query-languages/esql/commands/processing-commands.md#esql-eval). For example, to round a number to the closest number with the specified number of digits, use the [`ROUND`](elasticsearch://reference/query-languages/esql/functions-operators/math-functions.md#esql-round) function:
236236

237237
```esql
238238
FROM sample_data

explore-analyze/query-filter/languages/esql-kibana.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ After switching to {{esql}} mode, the query bar shows your previous KQL or Lucen
3939
from kibana_sample_data_logs | limit 10
4040
```
4141

42-
Every query starts with a [source command](elasticsearch://reference/query-languages/esql/esql-commands.md). In this query, the source command is [`FROM`](elasticsearch://reference/query-languages/esql/commands/source-commands.md#esql-from). `FROM` retrieves data from data streams, indices, or aliases. In this example, the data is retrieved from `kibana_sample_data_logs`.
42+
Every query starts with a [source command](elasticsearch://reference/query-languages/esql/esql-commands.md#esql-source-commands). In this query, the source command is [`FROM`](elasticsearch://reference/query-languages/esql/commands/source-commands.md#esql-from). `FROM` retrieves data from data streams, indices, or aliases. In this example, the data is retrieved from `kibana_sample_data_logs`.
4343

44-
A source command can be followed by one or more [processing commands](elasticsearch://reference/query-languages/esql/esql-commands.md). In this query, the processing command is [`LIMIT`](elasticsearch://reference/query-languages/esql/commands/processing-commands.md#esql-limit). `LIMIT` limits the number of rows that are retrieved.
44+
A source command can be followed by one or more [processing commands](elasticsearch://reference/query-languages/esql/esql-commands.md#esql-processing-commands). In this query, the processing command is [`LIMIT`](elasticsearch://reference/query-languages/esql/commands/processing-commands.md#esql-limit). `LIMIT` limits the number of rows that are retrieved.
4545

4646
::::{tip}
4747
Click the **ES|QL help** button to open the in-product reference documentation for all commands and functions or to get recommended queries that will help you get started.

0 commit comments

Comments
 (0)