Skip to main content
Version: v4.23

head

Limits the input to the first n events.

head [n:int]

Description

Forwards the first n events and discards the rest.

head n is a shorthand notation for slice end=n.

n: int (optional)

The number of events to keep.

Defaults to 10.

Examples

Get the first 10 events

head

Get the first 5 events

head 5