int() function

The int() function converts a single value to an integer.

*Function type: Type conversion
**
Output data type:* Integer

  1. int(v: "4")

Parameters

v

The value to convert.

*Data type: Boolean | Duration | Float | Numeric String | Time | Uinteger*

For duration and time values, int() returns the following:

Input typeReturned value
DurationThe number of nanoseconds in the specified duration
TimeA nanosecond epoch timestamp

Examples

  1. from(bucket: "sensor-data")
  2. |> range(start: -1m)
  3. |> filter(fn:(r) => r._measurement == "camera" )
  4. |> map(fn:(r) => ({ r with exposures: int(v: r.exposures) }))