From a70583936feaf99717b614a070aecda7caac6bc4 Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Thu, 21 Nov 2019 10:44:52 -0700 Subject: [PATCH 1/2] updated range param descriptions, resolves #612 --- .../reference/flux/stdlib/built-in/transformations/range.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/v2.0/reference/flux/stdlib/built-in/transformations/range.md b/content/v2.0/reference/flux/stdlib/built-in/transformations/range.md index 379d6e8ac..e9df0818b 100644 --- a/content/v2.0/reference/flux/stdlib/built-in/transformations/range.md +++ b/content/v2.0/reference/flux/stdlib/built-in/transformations/range.md @@ -28,6 +28,7 @@ range(start: -15m, stop: now()) ### start The earliest time to include in results. +Results **include** 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** 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()`. From fbe6d18a498482ff2a00edfcf67bcb4bfcbd2b6b Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Thu, 21 Nov 2019 13:26:08 -0700 Subject: [PATCH 2/2] update to range start and stop param descriptions --- .../reference/flux/stdlib/built-in/transformations/range.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/v2.0/reference/flux/stdlib/built-in/transformations/range.md b/content/v2.0/reference/flux/stdlib/built-in/transformations/range.md index e9df0818b..56d467646 100644 --- a/content/v2.0/reference/flux/stdlib/built-in/transformations/range.md +++ b/content/v2.0/reference/flux/stdlib/built-in/transformations/range.md @@ -28,7 +28,7 @@ range(start: -15m, stop: now()) ### start The earliest time to include in results. -Results **include** the specified start time. +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()`. @@ -37,7 +37,7 @@ _**Data type:** Duration | Time_ ### stop The latest time to include in results. -Results **exclude** the specified stop time. +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()`.