experimental.addDuration() function
The experimental.addDuration()
function adds a duration to a time value and
returns the resulting time value.
Function type: Transformation
The experimental.addDuration()
function is subject to change at any time.
By using this function, you accept the risks of experimental functions.
This specific function will be removed once duration vectors are implemented. See influxdata/flux#413.
import "experimental"
experimental.addDuration(
d: 12h,
to: now(),
)
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
import "experimental"
experimental.addDuration(
d: 6h,
to: 2019-09-16T12:00:00Z,
)
// Returns 2019-09-16T18:00:00.000000000Z
Bug Reports and Feedback
Thank you for being willing to help test InfluxDB v2.0 alpha! Feedback and bug reports are welcome and encouraged both for InfluxDB and this documentation. Submit feedback using one of the following methods:
- Post in the InfluxData Community
- In the InfluxDB UI, click Feedback in the left navigation bar.
- Submit documentation issues to the InfluxDB 2.0 documentation repository.
- Submit InfluxDB issues to the InfluxDB repository.