findColumn() function

The findColumn() function returns an array of values in a specified column from the first table in a stream of tables where the group key values match the specified predicate. The function returns an empty array if no table is found or if the column label is not present in the set of columns.

*Function type: Stream and table*

  1. findColumn(
  2. fn: (key) => key._field == "fieldName")
  3. column: "_value"
  4. )

Parameters

fn

A predicate function for matching keys in a table’s group key. Expects a key argument that represents a group key in the input stream.

*Data type: Function*

column

Name of the column to extract.

*Data type: String*

Example

  1. vs = from(bucket:"example-bucket")
  2. |> range(start: -5m)
  3. |> filter(fn:(r) => r._measurement == "cpu")
  4. |> findColumn(
  5. fn: (key) => key._field == "usage_idle",
  6. column: "_value"
  7. )
  8. // Use column values
  9. x = vs[0] + vs[1]

Related articles