mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-26 16:17:19 -04:00
This copies the first line of the description of each command to just under the syntax so that it's "in order", before the `Parameters` section. That way if you are reading from top to bottom you see: ``` syntax short description parameter names and descriptions long description examples ``` I've also removed the `Description` section entirely if the description was just one sentence. So in some cases that just isn't `long description`.
32 lines
557 B
Text
32 lines
557 B
Text
[discrete]
|
|
[[esql-show]]
|
|
=== `SHOW`
|
|
|
|
The `SHOW` source command returns information about the deployment and
|
|
its capabilities.
|
|
|
|
**Syntax**
|
|
|
|
[source,esql]
|
|
----
|
|
SHOW item
|
|
----
|
|
|
|
*Parameters*
|
|
|
|
`item`::
|
|
Can only be `INFO`.
|
|
|
|
*Examples*
|
|
|
|
Use `SHOW INFO` to return the deployment's version, build date and hash.
|
|
|
|
[source,esql]
|
|
----
|
|
SHOW INFO
|
|
----
|
|
[%header.monospaced.styled,format=dsv,separator=|]
|
|
|===
|
|
version | date | hash
|
|
8.13.0 |2024-02-23T10:04:18.123117961Z|04ba8c8db2507501c88f215e475de7b0798cb3b3
|
|
|===
|