Skip to content
Legacy docs for Tenzir v5.x. For the latest Tenzir v6 series, visit docs.tenzir.com. Migrating from v5? Read the Tenzir v6 migration guide.

Reverses the event order.

reverse

reverse is a shorthand notation for slice stride=-1.

from {x: 1}, {x: 2}, {x: 3}
reverse
{x: 3}
{x: 2}
{x: 1}

Last updated: