tail() function

The tail() function limits each output table to the last n records. The function produces one output table for each input table. Each output table contains the last n records before the offset. If the input table has less than offset + n records, tail() outputs all records before the offset.

*Function type: Filter*

  1. tail(
  2. n:10,
  3. offset: 0
  4. )

Parameters

n

The maximum number of records to output.

*Data type: Integer*

offset

The number of records to skip at the end of a table table before limiting to n. Defaults to 0.

*Data type: Integer*

Examples

Output the last ten records in each table
  1. from(bucket:"example-bucket")
  2. |> range(start:-1h)
  3. |> tail(n:10)

Related articles