take operator
Return up to the specified number of rows. There is no guarantee which records are returned, unless the source data is sorted. take is a simple, quick, and efficient way to view a small sample of records when browsing data interactively,
but be aware that it doesn't guarantee any consistency in its results when executing multiple times, even if the data set hasn't changed.
events | take 5
Syntax
take NumberOfRows
limit NumberOfRows
(take and limit are synonyms.)