Merge pull request #633 from influxdata/flux/range-param-update

Updated range param descriptions
pull/645/head
Scott Anderson 2019-11-21 14:33:10 -07:00 committed by GitHub
commit 30c2be57b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -28,6 +28,7 @@ range(start: -15m, stop: now())
### start
The 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`.
Durations are relative to `now()`.
@ -36,6 +37,7 @@ _**Data type:** Duration | Time_
### stop
The 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`.
Durations are relative to `now()`.