From ce7c6b8b39ae5fc9c00a04ebafa1cebe7b8451cb Mon Sep 17 00:00:00 2001 From: Karen Miller Date: Tue, 31 Aug 2021 11:16:05 -0700 Subject: [PATCH] Docs: revise max_query_lookback knob definition --- docs/sources/configuration/_index.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/sources/configuration/_index.md b/docs/sources/configuration/_index.md index 3d98d52a66c1..f05108c49247 100644 --- a/docs/sources/configuration/_index.md +++ b/docs/sources/configuration/_index.md @@ -1911,10 +1911,11 @@ logs in Loki. # CLI flag: -frontend.max-queriers-per-tenant [max_queriers_per_tenant: | default = 0] -# Limit how long back data (series and metadata) can be queried, up until duration ago. -# This limit is enforced in the query-frontend, querier and ruler. -# If the requested time range is outside the allowed range, the request will not fail but will be manipulated -# to only query data within the allowed time range. 0 to disable. +# Limit how far back in time series data and metadata can be queried, up until lookback duration ago. +# This limit is enforced in the query frontend, the querier and the ruler. +# If the requested time range is outside the allowed range, the request will not fail, +# but will be modified to only query data within the allowed time range. +# The default value of 0 does not set a limit. # CLI flag: -querier.max-query-lookback [max_query_lookback: | default = 0] ```