docs: note that `option location` does not change the timezone used in `_time` (#5702)
* docs: note that `option location` does not change the timezone used in results * Update content/flux/v0/spec/options.md Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com> * Update content/flux/v0/stdlib/timezone/location.md Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com> * Update content/flux/v0/stdlib/timezone/fixed.md Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com> * Apply suggestions from code review --------- Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com>pull/5697/head^2
parent
49c31c9b8f
commit
c578abb998
|
@ -62,4 +62,9 @@ option location = timezone.fixed(offset: -5h)
|
|||
option location = timezone.location(name: "America/Denver")
|
||||
```
|
||||
|
||||
> [!Note]
|
||||
> The `location` option only affects boundaries used for windowing, specifically around time shifts
|
||||
> like daylight savings. It does not change timestamps in the `_time` column, which are always UTC.
|
||||
|
||||
|
||||
{{< page-nav prev="/flux/v0/spec/variables/" next="/flux/v0/spec/types/" >}}
|
||||
|
|
|
@ -77,3 +77,7 @@ option location = timezone.fixed(offset: -8h)
|
|||
|
||||
```
|
||||
|
||||
> [!Note]
|
||||
> The `location` option only affects boundaries used for windowing, specifically around time shifts
|
||||
> like daylight savings. It does not change timestamps in the `_time` column, which are always UTC.
|
||||
|
||||
|
|
|
@ -75,3 +75,6 @@ option location = timezone.location(name: "America/Los_Angeles")
|
|||
|
||||
```
|
||||
|
||||
> [!Note]
|
||||
> The `location` option only affects boundaries used for windowing, specifically around time shifts
|
||||
> like daylight savings. It does not change timestamps in the `_time` column, which are always UTC.
|
||||
|
|
Loading…
Reference in New Issue