experimental.subDuration() function

The experimental.subDuration() function is subject to change at any time. By using this function, you accept the risks of experimental functions.

The experimental.subDuration() function subtracts a duration from a time value and returns the resulting time value.

*Function type: Transformation*

This function will be removed once duration vectors are implemented. See influxdata/flux#413.

  1. import "experimental"
  2. experimental.subDuration(
  3. d: 12h,
  4. from: now(),
  5. )

Parameters

d

The duration to subtract.

*Data type: Duration*

from

The time to subtract the duration from.

*Data type: Time*

Examples

Subtract six hours from a timestamp

  1. import "experimental"
  2. experimental.subDuration(
  3. d: 6h,
  4. from: 2019-09-16T12:00:00Z,
  5. )
  6. // Returns 2019-09-16T06:00:00.000000000Z

Related articles