875 B
875 B
title | description | aliases | menu | weight | flux/v0.x/tags | related | introduced | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
bytes() function | The `bytes()` function converts a single value to bytes. |
|
|
102 |
|
|
0.40.0 |
The bytes()
function converts a single value to bytes.
Output data type: Bytes
bytes(v: "1m")
Parameters
v
The value to convert.
Examples
from(bucket: "sensor-data")
|> range(start: -1m)
|> map(fn: (r) => ({r with _value: bytes(v: r._value)}))