File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -107,9 +107,12 @@ For example, let's say:
107
107
108
108
When the garbage collector runs, it will evaluate the archive's expiry criteria, substituting
109
109
$08:00$ for $data\_timestamp$, and $01:01$ for $current\_time$, since $09:01$ AWST = $01:01$ UTC.
110
- The equation then becomes $is\_expired = (08:00 < 01:01 - 01:00)$, which evaluates to false. Thus,
111
- the garbage collector won't delete the archive; in fact, it won't delete it until $09:01$ UTC, which
112
- is 8 hours later than it should've been deleted.
110
+ The equation then becomes...
111
+
112
+ $$is\_expired = (01:01 - 08:00 > 01:00)$$
113
+
114
+ ... which evaluates to false. Thus, the garbage collector won't delete the archive; in fact, it
115
+ won't delete it until $09:01$ UTC, which is 8 hours later than it should've been deleted.
113
116
114
117
Similarly, archives may be deleted prematurely if your log events use timestamps in a time zone that
115
118
is behind UTC.
You can’t perform that action at this time.
0 commit comments