From 017b43ec69b6113c3e4788a07f3936b597b386af Mon Sep 17 00:00:00 2001 From: Sebastian Rabenhorst Date: Tue, 28 May 2024 12:03:45 +0200 Subject: [PATCH] Added reference to agent in out_of_order_time_window docs --- docs/configuration/configuration.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/configuration/configuration.md b/docs/configuration/configuration.md index a90defc785a5..6f156ed7171b 100644 --- a/docs/configuration/configuration.md +++ b/docs/configuration/configuration.md @@ -3801,6 +3801,10 @@ NOTE: Out-of-order ingestion is an experimental feature, but you do not need any # into the TSDB, i.e. it is an in-order sample or an out-of-order/out-of-bounds sample # that is within the out-of-order window, or (b) too-old, i.e. not in-order # and before the out-of-order window. +# +# When out_of_order_time_window is greater than 0, it also affects experimental agent. It allows +# the agent's WAL to accept out-of-order samples that fall within the specified time window relative +# to the timestamp of the last appended sample for the same series. [ out_of_order_time_window: | default = 0s ] ```