From 9b66ddd0ecfed3b9c3b1dee9cdac6d748e24cffa Mon Sep 17 00:00:00 2001 From: Oscar Kilhed Date: Wed, 11 Oct 2023 10:45:01 +0200 Subject: [PATCH] Add field min/max calculation to what's new --- docs/sources/whatsnew/whats-new-in-v10-2.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/sources/whatsnew/whats-new-in-v10-2.md b/docs/sources/whatsnew/whats-new-in-v10-2.md index 4f43932315f..f3717a40e04 100644 --- a/docs/sources/whatsnew/whats-new-in-v10-2.md +++ b/docs/sources/whatsnew/whats-new-in-v10-2.md @@ -39,3 +39,20 @@ You must use relative references when linking to docs within the Grafana repo. P Learn how to upload images here: https://grafana.com/docs/writers-toolkit/write/image-guidelines/#where-to-store-media-assets --> + +## Calculate visualization min/max individually per field + + + +_Generally available in Grafana_ + +When visualizing multiple fields with a wide spread of values, calculating the min/max value of the visualization based on all fields can hide useful details. +{{< figure src="/media/docs/grafana/panels-visualizations/globalminmax.png" caption="Stat panel visualization with min/max calculated from all fields" > }} +In this example in the stats panel, it's hard to get an idea of how the values of each series relates to the historical values of that series. The threshold of 10% is exceeded by the A-series even though the A-series is below 10% of its historical maximum. + +Now, you can automatically calculate the min/max of each visualized field, based on the lowest and highest value of the individual field! This setting is available in the standard options in most visualizations. + +{{< figure src="/media/docs/grafana/panels-visualizations/localminmax.png" caption="Stat panel visualization with min/max calculated per field" > }} +In this example, using the same data, with the min and max calculated for each individual field, we get a much better understanding of how the current value relates to the historical values. The A-series no longer exceeds the 10% threshold, it is in fact at a historical low! + +This is not only useful in the stat panel. Gauge panel, bar gauge, status history, table cells formatted by thresholds, and gauge table cells all benefit from this addition!