Documentation

date.add() function

date.add() adds a duration to a time value and returns the resulting time value.

Function type signature
(d: duration, to: A, ?location: {zone: string, offset: duration}) => time where A: Timeable
  • Copy
  • Fill window

For more information, see Function type signatures.

Parameters

d

(Required) Duration to add.

to

(Required) Time to add the duration to.

location

Location to use for the time value.

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
  • Copy
  • Fill window

Add one month to yesterday

A time may be represented as either an explicit timestamp or as a relative time from the current now time. add can support either type of value.

import "date"

option now = () => 2021-12-10T16:27:40Z

date.add(d: 1mo, to: -1d)// Returns 2022-01-09T16:27:40Z
  • Copy
  • Fill window

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
  • Copy
  • Fill window

Was this page helpful?

Thank you for your feedback!


The future of Flux

Flux is going into maintenance mode. You can continue using it as you currently are without any changes to your code.

Read more

InfluxDB 3 Core and Enterprise are now in Beta

InfluxDB 3 Core and Enterprise are now available for beta testing, available under MIT or Apache 2 license.

InfluxDB 3 Core is a high-speed, recent-data engine that collects and processes data in real-time, while persisting it to local disk or object storage. InfluxDB 3 Enterprise is a commercial product that builds on Core’s foundation, adding high availability, read replicas, enhanced security, and data compaction for faster queries. A free tier of InfluxDB 3 Enterprise will also be available for at-home, non-commercial use for hobbyists to get the full historical time series database set of capabilities.

For more information, check out: