toDuration() function

toDuration() was removed in Flux 0.37.

The toDuration() function converts all values in the _value column to durations.

*Function type: Type conversion*

  1. toDuration()

*Supported data types: Integer | String | Uinteger*

duration() assumes numeric input values are nanoseconds. String input values must use duration literal representation.

To convert values in a column other than _value, define a custom function patterned after the function definition, but replace _value with your desired column.

Examples

  1. from(bucket: "telegraf")
  2. |> filter(fn:(r) =>
  3. r._measurement == "mem" and
  4. r._field == "used"
  5. )
  6. |> toDuration()

Function definition

  1. toDuration = (tables=<-) =>
  2. tables
  3. |> map(fn:(r) => ({ r with _value: duration(v: r._value) }))

*Used functions: map(), duration()*