From cc16483e1b908a01dfb8db11b8c560f602ff1ee5 Mon Sep 17 00:00:00 2001 From: Kevin Hellemun <17928966+OGKevin@users.noreply.github.com> Date: Tue, 4 Aug 2020 14:48:23 +0200 Subject: [PATCH] Update docs and changelog. Signed-off-by: Kevin Hellemun <17928966+OGKevin@users.noreply.github.com> --- CHANGELOG.md | 1 + docs/components/tools.md | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0e75ffcd6..2a44b867f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2926](https://github.com/thanos-io/thanos/pull/2926) API: Add new blocks HTTP API to serve blocks metadata. The status endpoints (`/api/v1/status/flags`, `/api/v1/status/runtimeinfo` and `/api/v1/status/buildinfo`) are now available on all components with a HTTP API. - [#2892](https://github.com/thanos-io/thanos/pull/2892) Receive: Receiver fails when the initial upload fails. - [#2865](https://github.com/thanos-io/thanos/pull/2865) ui: Migrate Thanos Ruler UI to React +- [#2979](https://github.com/thanos-io/thanos/pull/2979) Replicator: Add TimePartitionMetaFilter for time based replication. ### Changed diff --git a/docs/components/tools.md b/docs/components/tools.md index f88752d210..baf9064ae5 100644 --- a/docs/components/tools.md +++ b/docs/components/tools.md @@ -457,6 +457,22 @@ Flags: --matcher=key="value" ... Only blocks whose external labels exactly match this matcher will be replicated. --single-run Run replication only one time, then exit. + --min-time=0000-01-01T00:00:00Z + Start of time range limit to replicate. Thanos + Replicate will replicate only metrics, which + happened later than this value. Option can be a + constant time in RFC3339 format or time + duration relative to current time, such as -1d + or 2h45m. Valid duration units are ms, s, m, h, + d, w, y. + --max-time=9999-12-31T23:59:59Z + End of time range limit to replicate. Thanos + Replicate will replicate only metrics, which + happened earlier than this value. Option can be + a constant time in RFC3339 format or time + duration relative to current time, such as -1d + or 2h45m. Valid duration units are ms, s, m, h, + d, w, y. ```