From ed43121f131df4c67a91f911a405dece2e80dfe8 Mon Sep 17 00:00:00 2001 From: Pratik Mankawde <3397372+pratikmankawde@users.noreply.github.com> Date: Fri, 7 Aug 2026 12:39:27 +0100 Subject: [PATCH] fix(telemetry): give the GetObject heatmap the options its plugin requires The GetObject Request Size Distribution heatmap, added on this branch, was missing calculate, color and cellGap. Grafana's heatmap plugin needs them, and without them the whole dashboard opens with "An error occurred within the plugin" instead of rendering. Same values as the other four heatmaps fixed upstream, taken from the one that renders correctly on Grafana Cloud. The panel keeps its own axis label and unit. --- .../grafana/dashboards/overlay-traffic-detail.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docker/telemetry/grafana/dashboards/overlay-traffic-detail.json b/docker/telemetry/grafana/dashboards/overlay-traffic-detail.json index ee652e8d8a..0617cd703a 100644 --- a/docker/telemetry/grafana/dashboards/overlay-traffic-detail.json +++ b/docker/telemetry/grafana/dashboards/overlay-traffic-detail.json @@ -713,6 +713,16 @@ "y": 41 }, "options": { + "calculate": false, + "cellGap": 1, + "color": { + "mode": "scheme", + "scheme": "Turbo", + "steps": 64 + }, + "legend": { + "show": true + }, "tooltip": { "maxHeight": 600, "mode": "multi",