From 52270d621668c3428531f68370c40065f13bbd90 Mon Sep 17 00:00:00 2001 From: Chance Feick Date: Mon, 14 Nov 2022 13:30:22 -0800 Subject: [PATCH 1/3] Fix relative link to use .md file extension Signed-off-by: Chance Feick --- docs/querying/basics.md | 2 +- docs/querying/functions.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/querying/basics.md b/docs/querying/basics.md index bc4478f628..5e9ddc1191 100644 --- a/docs/querying/basics.md +++ b/docs/querying/basics.md @@ -35,7 +35,7 @@ vector is the only type that can be directly graphed. _Notes about the experimental native histograms:_ * Ingesting native histograms has to be enabled via a [feature - flag](../feature_flags/#native-histograms). + flag](../feature_flags.md#native-histograms). * Once native histograms have been ingested into the TSDB (and even after disabling the feature flag again), both instant vectors and range vectors may now contain samples that aren't simple floating point numbers (float samples) diff --git a/docs/querying/functions.md b/docs/querying/functions.md index b4bc0a7433..82513e1c0a 100644 --- a/docs/querying/functions.md +++ b/docs/querying/functions.md @@ -14,7 +14,7 @@ vector, which if not provided it will default to the value of the expression _Notes about the experimental native histograms:_ * Ingesting native histograms has to be enabled via a [feature - flag](../feature_flags/#native-histograms). As long as no native histograms + flag](../feature_flags.md#native-histograms). As long as no native histograms have been ingested into the TSDB, all functions will behave as usual. * Functions that do not explicitly mention native histograms in their documentation (see below) effectively treat a native histogram as a float From 2cfd8da6280f97176ee877aaa0c5f724d20905de Mon Sep 17 00:00:00 2001 From: Chance Feick <6326742+chancefeick@users.noreply.github.com> Date: Tue, 15 Nov 2022 08:10:44 -0800 Subject: [PATCH 2/3] Update docs/querying/basics.md Co-authored-by: Julien Pivotto Signed-off-by: Chance Feick <6326742+chancefeick@users.noreply.github.com> --- docs/querying/basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/querying/basics.md b/docs/querying/basics.md index 5e9ddc1191..c3aa7b8049 100644 --- a/docs/querying/basics.md +++ b/docs/querying/basics.md @@ -35,7 +35,7 @@ vector is the only type that can be directly graphed. _Notes about the experimental native histograms:_ * Ingesting native histograms has to be enabled via a [feature - flag](../feature_flags.md#native-histograms). + flag](../../feature_flags/#native-histograms). * Once native histograms have been ingested into the TSDB (and even after disabling the feature flag again), both instant vectors and range vectors may now contain samples that aren't simple floating point numbers (float samples) From fc2e4cd3b9ca1d924dce714b091c9bd5c97926fa Mon Sep 17 00:00:00 2001 From: Julien Pivotto Date: Tue, 11 Jul 2023 13:13:35 +0200 Subject: [PATCH 3/3] docs: Fix link to feature flags. Signed-off-by: Julien Pivotto --- docs/querying/basics.md | 2 +- docs/querying/operators.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/querying/basics.md b/docs/querying/basics.md index c3aa7b8049..5e9ddc1191 100644 --- a/docs/querying/basics.md +++ b/docs/querying/basics.md @@ -35,7 +35,7 @@ vector is the only type that can be directly graphed. _Notes about the experimental native histograms:_ * Ingesting native histograms has to be enabled via a [feature - flag](../../feature_flags/#native-histograms). + flag](../feature_flags.md#native-histograms). * Once native histograms have been ingested into the TSDB (and even after disabling the feature flag again), both instant vectors and range vectors may now contain samples that aren't simple floating point numbers (float samples) diff --git a/docs/querying/operators.md b/docs/querying/operators.md index 0cd5368941..5eb5490510 100644 --- a/docs/querying/operators.md +++ b/docs/querying/operators.md @@ -310,7 +310,7 @@ so `2 ^ 3 ^ 2` is equivalent to `2 ^ (3 ^ 2)`. ## Operators for native histograms Native histograms are an experimental feature. Ingesting native histograms has -to be enabled via a [feature flag](../feature_flags/#native-histograms). Once +to be enabled via a [feature flag](../feature_flags.md#native-histograms). Once native histograms have been ingested, they can be queried (even after the feature flag has been disabled again). However, the operator support for native histograms is still very limited.