Skip to main content
Version: Tenzir v4.13

version

Shows the current version.

Synopsis

version

Description

The version operator shows the current Tenzir version.

Schemas

Tenzir emits version information with the following schema.

tenzir.version

Contains detailed information about the process version.

FieldTypeDescription
versionstringThe formatted version string.
majoruint64The major release version.
minoruint64The minor release version.
patchuint64The patch release version.
tweakuint64The number of changes since the last release.

Examples

Use version to show the current version of a development build:

{
"version": "v4.6.3-36-gbd4c8a058b-dirty",
"major": 4,
"minor": 6,
"patch": 3,
"tweak": 36
}

Use version to show the current version of a release build:

{
"version": "v4.7.0",
"major": 4,
"minor": 7,
"patch": 0,
"tweak": 0
}