elasticsearch/docs/reference/esql/functions
Iván Cea Fontenla 595d907f61
ESQL: SpatialCentroid aggregation tests and docs (#111236)
2024-07-26 10:41:18 +02:00
..
appendix Added Percentile aggregation tests and Kibana docs (#111050) 2024-07-19 14:28:11 +02:00
description ESQL: SpatialCentroid aggregation tests and docs (#111236) 2024-07-26 10:41:18 +02:00
examples ESQL: SpatialCentroid aggregation tests and docs (#111236) 2024-07-26 10:41:18 +02:00
kibana ESQL: SpatialCentroid aggregation tests and docs (#111236) 2024-07-26 10:41:18 +02:00
layout ESQL: SpatialCentroid aggregation tests and docs (#111236) 2024-07-26 10:41:18 +02:00
parameters ESQL: SpatialCentroid aggregation tests and docs (#111236) 2024-07-26 10:41:18 +02:00
signature ESQL: SpatialCentroid aggregation tests and docs (#111236) 2024-07-26 10:41:18 +02:00
types ESQL: SpatialCentroid aggregation tests and docs (#111236) 2024-07-26 10:41:18 +02:00
README.md
aggregation-functions.asciidoc ESQL: SpatialCentroid aggregation tests and docs (#111236) 2024-07-26 10:41:18 +02:00
binary.asciidoc
cast.asciidoc
conditional-functions-and-expressions.asciidoc
count-distinct.asciidoc
count.asciidoc ESQL: Document the pattern to count TRUE (#110820) 2024-07-12 14:08:22 -04:00
date-time-functions.asciidoc
grouping-functions.asciidoc
in.asciidoc
ip-functions.asciidoc
like.asciidoc
logical.asciidoc
math-functions.asciidoc Add the EXP ES|QL function (#110879) 2024-07-16 16:36:01 +02:00
median-absolute-deviation.asciidoc Added Percentile aggregation tests and Kibana docs (#111050) 2024-07-19 14:28:11 +02:00
median.asciidoc Added Percentile aggregation tests and Kibana docs (#111050) 2024-07-19 14:28:11 +02:00
mv-functions.asciidoc
operators.asciidoc
predicates.asciidoc
rlike.asciidoc
spatial-functions.asciidoc
st_centroid_agg.asciidoc
string-functions.asciidoc
type-conversion-functions.asciidoc
unary.asciidoc
values.asciidoc
weighted-avg.asciidoc

README.md

The files in these subdirectories are generated by ESQL's test suite:

  • description - description of each function scraped from @FunctionInfo#description
  • examples - examples of each function scraped from @FunctionInfo#examples
  • parameters - description of each function's parameters scraped from @Param
  • signature - railroad diagram of the syntax to invoke each function
  • types - a table of each combination of support type for each parameter. These are generated from tests.
  • layout - a fully generated description for each function
  • kibana/definition - function definitions for kibana's ESQL editor
  • kibana/docs - the inline docs for kibana

Most functions can use the generated docs generated in the layout directory. If we need something more custom for the function we can make a file in this directory that can include:: any parts of the files above.

To regenerate the files for a function run its tests using gradle:

./gradlew :x-pack:plugin:esql:test -Dtests.class='*SinTests'

To regenerate the files for all functions run all of ESQL's tests using gradle:

./gradlew :x-pack:plugin:esql:test