experimental.addDuration() function

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

The experimental.addDuration() function adds a duration to 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.addDuration(
  3. d: 12h,
  4. to: now(),
  5. )

Parameters

d

The duration to add.

*Data type: Duration*

to

The time to add the duration to.

*Data type: Time*

Examples

Add six hours to a timestamp

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

Related articles