docs-v2/content/influxdb/cloud/reference/flux/stdlib/date/_index.md

1.3 KiB

title list_title description aliases menu weight influxdb/v2.0/tags
Flux date package Date package The Flux date package provides date and time constants and functions. Import the `date` package.
/influxdb/cloud/reference/flux/language/built-ins/time-constants/
/influxdb/cloud/reference/flux/functions/date/
influxdb_cloud_ref
name parent
Date Flux standard library
202
date
time
functions

The Flux date package provides date and time constants and functions. Import the date package.

import "date"

Date and time constants

That date package includes the following date and time constants.

Days of the week

Days of the week are represented as integers in the range [0-6].

date.Sunday    = 0
date.Monday    = 1
date.Tuesday   = 2
date.Wednesday = 3
date.Thursday  = 4
date.Friday    = 5
date.Saturday  = 6

Months of the year

Months are represented as integers in the range [1-12].

date.January   = 1
date.February  = 2
date.March     = 3
date.April     = 4
date.May       = 5
date.June      = 6
date.July      = 7
date.August    = 8
date.September = 9
date.October   = 10
date.November  = 11
date.December  = 12

Date and time functions

{{< children type="functions" show="pages" >}}