diff --git a/content/influxdb/v2.0/reference/flux/stdlib/experimental/query/fromrange.md b/content/influxdb/v2.0/reference/flux/stdlib/experimental/query/fromrange.md index d7fa27629..5b335f572 100644 --- a/content/influxdb/v2.0/reference/flux/stdlib/experimental/query/fromrange.md +++ b/content/influxdb/v2.0/reference/flux/stdlib/experimental/query/fromrange.md @@ -38,7 +38,6 @@ Results **include** points that match the specified start time. Use a relative duration, absolute time, or integer (Unix timestamp in seconds). For example, `-1h`, `2019-08-28T22:00:00Z`, or `1567029600`.. Durations are relative to `now()`. -Integers are nanosecond Unix timestamps. _**Data type:** Duration | Time | Integer_ @@ -48,7 +47,6 @@ Results **exclude** points that match the specified stop time. Use a relative duration, absolute time, or integer (Unix timestamp in seconds). For example, `-1h`, `2019-08-28T22:00:00Z`, or `1567029600`. Durations are relative to `now()`. -Integers are nanosecond Unix timestamps. Defaults to `now()`. _**Data type:** Duration | Time | Integer_ diff --git a/content/influxdb/v2.0/reference/flux/stdlib/experimental/query/inbucket.md b/content/influxdb/v2.0/reference/flux/stdlib/experimental/query/inbucket.md index 0b5f1eaa0..c498044d0 100644 --- a/content/influxdb/v2.0/reference/flux/stdlib/experimental/query/inbucket.md +++ b/content/influxdb/v2.0/reference/flux/stdlib/experimental/query/inbucket.md @@ -41,7 +41,6 @@ Results **include** points that match the specified start time. Use a relative duration, absolute time, or integer (Unix timestamp in seconds). For example, `-1h`, `2019-08-28T22:00:00Z`, or `1567029600`. Durations are relative to `now()`. -Integers are nanosecond Unix timestamps. _**Data type:** Duration | Time | Integer_ @@ -51,7 +50,6 @@ Results **exclude** points that match the specified stop time. Use a relative duration, absolute time, or integer (Unix timestamp in seconds). For example, `-1h`, `2019-08-28T22:00:00Z`, or `1567029600`. Durations are relative to `now()`. -Integers are nanosecond Unix timestamps. Defaults to `now()`. _**Data type:** Duration | Time | Integer_ diff --git a/content/influxdb/v2.0/reference/flux/stdlib/monitor/from.md b/content/influxdb/v2.0/reference/flux/stdlib/monitor/from.md index 60fdecc22..1be3bd9de 100644 --- a/content/influxdb/v2.0/reference/flux/stdlib/monitor/from.md +++ b/content/influxdb/v2.0/reference/flux/stdlib/monitor/from.md @@ -35,7 +35,6 @@ The earliest time to include in results. Use a relative duration, absolute time, or integer (Unix timestamp in seconds). For example, `-1h`, `2019-08-28T22:00:00Z`, or `1567029600`. Durations are relative to `now()`. -Integers are nanosecond Unix timestamps. _**Data type:** Duration | Time | Integer_ @@ -44,7 +43,6 @@ The latest time to include in results. Use a relative duration, absolute time, or integer (Unix timestamp in seconds). For example, `-1h`, `2019-08-28T22:00:00Z`, or `1567029600`. Durations are relative to `now()`. -Integers are nanosecond Unix timestamps. Defaults to `now()`. _**Data type:** Duration | Time | Integer_ diff --git a/content/influxdb/v2.0/reference/flux/stdlib/monitor/logs.md b/content/influxdb/v2.0/reference/flux/stdlib/monitor/logs.md index af783b8a8..52670684f 100644 --- a/content/influxdb/v2.0/reference/flux/stdlib/monitor/logs.md +++ b/content/influxdb/v2.0/reference/flux/stdlib/monitor/logs.md @@ -34,7 +34,6 @@ The earliest time to include in results. Use a relative duration, absolute time, or integer (Unix timestamp in seconds). For example, `-1h`, `2019-08-28T22:00:00Z`, or `1567029600`. Durations are relative to `now()`. -Integers are nanosecond Unix timestamps. _**Data type:** Duration | Time | Integer_ @@ -43,7 +42,6 @@ The latest time to include in results. Use a relative duration, absolute time, or integer (Unix timestamp in seconds). For example, `-1h`, `2019-08-28T22:00:00Z`, or `1567029600`. Durations are relative to `now()`. -Integers are nanosecond Unix timestamps. Defaults to `now()`. _**Data type:** Duration | Time | Integer_ diff --git a/content/v2.0/reference/flux/stdlib/contrib/influxdb/select.md b/content/v2.0/reference/flux/stdlib/contrib/influxdb/select.md index cac8ebccd..fea470ef5 100644 --- a/content/v2.0/reference/flux/stdlib/contrib/influxdb/select.md +++ b/content/v2.0/reference/flux/stdlib/contrib/influxdb/select.md @@ -55,19 +55,17 @@ _**Data type:** String_ ### start Required Earliest time to include in results. Results **include** points that match the specified start time. -Use a relative duration or absolute time. -For example, `-1h` or `2019-08-28T22:00:00Z`. +Use a relative duration, absolute time, or integer (Unix timestamp in seconds). +For example, `-1h`, `2019-08-28T22:00:00Z`, or `1567029600`. Durations are relative to `now()`. -Integers are nanosecond Unix timestamps. _**Data type:** Duration | Time | Integer_ ### stop Latest time to include in results. Results **exclude** points that match the specified stop time. -Use a relative duration or absolute time. -For example, `-1h` or `2019-08-28T22:00:00Z`. -Integers are nanosecond Unix timestamps. +Use a relative duration, absolute time, or integer (Unix timestamp in seconds). +For example, `-1h`, `2019-08-28T22:00:00Z`, or `1567029600`. Durations are relative to `now()`. Defaults to `now()`.