date.add() function
date.add()
adds a duration to a time value and returns the resulting time.
import "date"
date.add(d: 12h, to: now())
Parameters
d
Duration to add.
to
Time to add the duration to.
Use an absolute time or a relative duration.
Durations are relative to now()
.
Examples
Add six hours to a timestamp
import "date"
date.add(d: 6h, to: 2019-09-16T12:00:00Z)
// Returns 2019-09-16T18:00:00.000000000Z
Add six hours to a relative duration
import "date"
option now = () => 2022-01-01T12:00:00Z
date.add(d: 6h, to: 3h)
// Returns 2022-01-01T21:00:00.000000000Z
Was this page helpful?
Thank you for your feedback!
Support and feedback
Thank you for being part of our community! We welcome and encourage your feedback and bug reports for Flux and this documentation. To find support, use the following resources:
InfluxDB Cloud customers can contact InfluxData Support.