2023-10-17 23:36:14 +08:00
|
|
|
[discrete]
|
2023-05-30 19:58:33 +08:00
|
|
|
[[esql-show]]
|
2023-11-06 15:42:13 +08:00
|
|
|
=== `SHOW`
|
2023-05-30 19:58:33 +08:00
|
|
|
|
2023-11-06 15:42:13 +08:00
|
|
|
**Syntax**
|
|
|
|
|
|
|
|
[source,esql]
|
|
|
|
----
|
|
|
|
SHOW item
|
|
|
|
----
|
|
|
|
|
|
|
|
*Parameters*
|
|
|
|
|
|
|
|
`item`::
|
2024-02-08 09:28:13 +08:00
|
|
|
Can be `INFO` or experimental:[] `FUNCTIONS`.
|
2023-11-06 15:42:13 +08:00
|
|
|
|
|
|
|
*Description*
|
|
|
|
|
|
|
|
The `SHOW` source command returns information about the deployment and
|
2023-05-30 19:58:33 +08:00
|
|
|
its capabilities:
|
|
|
|
|
|
|
|
* Use `SHOW INFO` to return the deployment's version, build date and hash.
|
2024-02-08 09:28:13 +08:00
|
|
|
* Use experimental:[] `SHOW FUNCTIONS` to return a list of all supported functions and a
|
2023-05-30 19:58:33 +08:00
|
|
|
synopsis of each function.
|
2023-11-06 15:42:13 +08:00
|
|
|
|
|
|
|
*Examples*
|
|
|
|
|
|
|
|
[source.merge.styled,esql]
|
|
|
|
----
|
|
|
|
include::{esql-specs}/show.csv-spec[tag=showFunctionsFiltered]
|
|
|
|
----
|
|
|
|
[%header.monospaced.styled,format=dsv,separator=|]
|
|
|
|
|===
|
|
|
|
include::{esql-specs}/show.csv-spec[tag=showFunctionsFiltered-result]
|
|
|
|
|===
|