time() function
The time()
function converts a single value to a time.
*Function type: Type conversion
**Output data type:* Time
time(v: "2016-06-13T17:43:50.1004002Z")
Parameters
v
The value to convert.
*Data type: Integer | String | Uinteger*
time()
assumes all numeric input values are nanosecond epoch timestamps.
Examples
from(bucket: "sensor-data")
|> range(start: -1m)
|> filter(fn:(r) => r._measurement == "system" )
|> map(fn:(r) => ({ r with timestamp: time(v: r.timestamp) }))