spread() function

The spread() function outputs the difference between the minimum and maximum values in a specified column. Only uint, int, and float column types can be used. The type of the output column depends on the type of input column:

  • For columns with type uint or int, the output is an int
  • For columns with type float, the output is a float.

*Function type: Aggregate
**
Output data type:* Integer or Float (inherited from input column type)

  1. spread(column: "_value")

Parameters

column

The column on which to operate. Defaults to "_value".

*Data type: String*

Examples

  1. from(bucket: "example-bucket")
  2. |> range(start: -5m)
  3. |> filter(fn: (r) =>
  4. r._measurement == "cpu" and
  5. r._field == "usage_system"
  6. )
  7. |> spread()

Related articles