From 92b82ff8a18c5bba51e6d1467950a18e846b301a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9C=BF=20corey?= Date: Fri, 20 Mar 2026 14:25:42 -0700 Subject: [PATCH] fix(spore): fix Log Explorer host variable allValue matcher Loki rejects `{host=~".*"}` because `.*` matches empty strings. Change allValue from `.*` to `.+` so the "All" selection produces a valid stream selector. Co-Authored-By: Claude Opus 4.6 --- hosts/spore/services/dashboards/logs.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/spore/services/dashboards/logs.json b/hosts/spore/services/dashboards/logs.json index b6830620..dc441587 100644 --- a/hosts/spore/services/dashboards/logs.json +++ b/hosts/spore/services/dashboards/logs.json @@ -183,7 +183,7 @@ "current": { "selected": true, "text": "All", "value": "$__all" }, "hide": 0, "includeAll": true, - "allValue": ".*", + "allValue": ".+", "label": "Host", "multi": true, "name": "host",