show
Returns information about a Tenzir node.
Deprecated
The show
operator is deprecated. Instead of show <aspect>
, use the operator
<aspect>
if available.
Synopsis
show [<aspect>]
Description
The show
operator offers introspection capabilities to look at various
aspects of a Tenzir node.
<aspect>
Describes the part of Tenzir to look at.
Available aspects:
config
: shows all current configuration options.connectors
: shows all available connectors.contexts
: shows all available contexts.formats
: shows all available formats.operators
: shows all available operators.pipelines
: shows all managed pipelines of a remote node.plugins
: shows all loaded plugins.packages
: shows all all installed packages.
We also offer some additional aspects for experts that want to take a deeper look at what's going on:
build
: shows compile-time build information.fields
: shows all fields of existing tables at a remote node.schemas
shows all schema definitions for which data is stored at the node.serves
shows all pipelines with theserve
sink operator currently available from the/serve
API endpoint.
When no aspect is specified, all are shown.
Examples
Show all available connectors and formats:
show connectors
show formats
Show all transformations:
show operators | where transformation == true
Show all fields at a node:
show fields
Show all aspects of a node:
show