Finds the newest events.

ParameterTypeRequiredDefault ValueDescription
limit[a]numberoptional[b]200 The maximum number of events included in results.
  Minimum1 
  Maximum20,000The default maximum limit is not static and can be changed by setting the StateRowLimit dynamic configuration.

[a] The argument name limit can be omitted.

[b] Optional parameters use their default value unless explicitly set.

Hide omitted argument names for this function

Show omitted argument names for this function

The tail() uses the @timestamp to select the most recent events. If not available, the @ingesttimestamp field is used instead.

If neither the @timestamp or @ingesttimestamp fields are available, the search will report the error: Expected events to have a @timestamp field for tail to work.

tail() Examples

Select the 10 newest where loglevel=ERROR:

logscale
loglevel=ERROR
| tail(10)

Select the 100 latest events and group them by loglevel

logscale
tail(limit=100)
| groupby(loglevel)

Although the default is 200, if a number higher than this is specified, LogScale will attempt to return as many results up to that number. For example:

logscale
"GET /_images"
| tail(1000)

Will return up to 1000 events matching an HTTP GET request for files in the _images directory. If there are only 287 matching events, all 287 will be returned.