int() function
The int()
function converts a single value to an integer.
Function type: Type conversion
Output data type: Integer
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 type | Returned value |
---|---|
Duration | The number of nanoseconds in the specified duration |
Time | A nanosecond epoch timestamp |
Examples
from(bucket: "sensor-data")
|> range(start: -1m)
|> filter(fn:(r) => r._measurement == "camera" )
|> map(fn:(r) => ({ r with exposures: int(v: r.exposures) }))
Support and feedback
Thank you for being part of our community! We welcome and encourage your feedback and bug reports for InfluxDB and this documentation. To find support, the following resources are available:
InfluxDB Cloud and InfluxDB Enterprise customers can contact InfluxData Support.