From 244a14c71b9882ab8d36c7dd29dc01c314b43951 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Tue, 19 Sep 2023 15:20:09 -0700 Subject: [PATCH] Remove fedora image from dib status We are no longer building these images so don't need them on the dib status grafana dashboard any longer. This dashboard lists all images in graphite to generate a list of images to produce statuses for. We exclude the fedora images using a negative lookahead regex. Change-Id: I2d7ba7984c98ec103142fa23e3a7b31e9d1c7485 --- grafana/nodepool-dib-status.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/grafana/nodepool-dib-status.json b/grafana/nodepool-dib-status.json index 68a33841ce..99e04e48b4 100644 --- a/grafana/nodepool-dib-status.json +++ b/grafana/nodepool-dib-status.json @@ -475,7 +475,7 @@ "options": [], "query": "stats.timers.nodepool.dib_image_build.*", "refresh": 1, - "regex": "", + "regex": "/^(?!fedora-[0-9]+).*/", "skipUrlSync": false, "sort": 0, "type": "query" @@ -492,4 +492,4 @@ "uid": "f3089338b3", "version": 9, "weekStart": "" -} \ No newline at end of file +}