From 55523167a7345ea46b905d0e22db18ddc7ef76ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=C3=A9fix=20Estrada?= Date: Thu, 18 Nov 2021 12:19:00 +0100 Subject: [PATCH] Fix Grafana CPU temperature panel It had a specific host, with this fix it will work for all hosts --- conf/glances-grafana.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/conf/glances-grafana.json b/conf/glances-grafana.json index 2c8063a0..39380285 100644 --- a/conf/glances-grafana.json +++ b/conf/glances-grafana.json @@ -389,8 +389,8 @@ "tags": [ { "key": "hostname", - "operator": "=", - "value": "XPS13-9333" + "operator": "=~", + "value": "/^$host$/" } ], "target": "" @@ -2190,8 +2190,8 @@ { "condition": "AND", "key": "hostname", - "operator": "=", - "value": "XPS13-9333" + "operator": "=~", + "value": "/^$host$/" } ] } @@ -2616,4 +2616,4 @@ "title": "Glances", "uid": "000000002", "version": 4 -} \ No newline at end of file +}