uint() function

The uint() function converts a single value to a UInteger.

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

  1. uint(v: "4")

Parameters

v

The value to convert.

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

For duration and time values, uint() 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: uint(v: r.exposures) }))