From 2d03a49232e9b8232f9a18c97d208763edde3682 Mon Sep 17 00:00:00 2001 From: Luke Atkinson Date: Thu, 4 Jan 2024 11:50:02 +0000 Subject: [PATCH] Fix the display of the "Errors" panel in the SLO detail dashboard This panel actually shows the rate of errors occurring but is configured to display this as percentunit. This results in it showing a 200% error rate when there are actually 2 errors occurring per second. Change the unit for this panel to reqps instead. --- examples/grafana/detail.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/grafana/detail.json b/examples/grafana/detail.json index 25fa67e1..c84857b4 100644 --- a/examples/grafana/detail.json +++ b/examples/grafana/detail.json @@ -598,7 +598,7 @@ } ] }, - "unit": "percentunit" + "unit": "reqps" }, "overrides": [ { @@ -715,4 +715,4 @@ "uid": "ccssRIenz", "version": 1, "weekStart": "" -} \ No newline at end of file +}