bytes() function

The bytes() function converts a single value to bytes.

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

  1. bytes(v: "1m")

Parameters

v

The value to convert.

*Data type: String*

Examples

  1. from(bucket: "sensor-data")
  2. |> range(start: -1m)
  3. |> map(fn:(r) => ({ r with _value: bytes(v: r._value) }))