Documentation

lowestCurrent() function

lowestCurrent() selects the last record from each input table and returns the lowest n records.

Note: lowestCurrent() drops empty tables.

Function type signature
(<-tables: stream[A], n: int, ?column: string, ?groupColumns: [string]) => stream[A] where A: Record
For more information, see Function type signatures.

Parameters

n

(Required) Number of records to return.

column

Column to evaluate. Default is _value.

groupColumns

List of columns to group by. Default is [].

tables

Input data. Default is piped-forward data (<-).

Examples

Return the lowest current value from a stream of tables

import "sampledata"

sampledata.int()
    |> lowestCurrent(n: 1, groupColumns: ["tag"])

View example input and output


Was this page helpful?

Thank you for your feedback!


Introducing InfluxDB 3.0

The new core of InfluxDB built with Rust and Apache Arrow. Available today in InfluxDB Cloud Dedicated.

Learn more

State of the InfluxDB Cloud Serverless documentation

The new documentation for InfluxDB Cloud Serverless is a work in progress. We are adding new information and content almost daily. Thank you for your patience!

If there is specific information you’re looking for, please submit a documentation issue.