From ead9c08e831ebec45483031471e14dbf5aa192d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <soeren.henning@email.uni-kiel.de> Date: Sun, 9 May 2021 19:48:00 +0200 Subject: [PATCH] Show 0 lag in dashboard --- execution/infrastructure/grafana/dashboard-config-map.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/execution/infrastructure/grafana/dashboard-config-map.yaml b/execution/infrastructure/grafana/dashboard-config-map.yaml index e858ffe7d..c9a328d31 100644 --- a/execution/infrastructure/grafana/dashboard-config-map.yaml +++ b/execution/infrastructure/grafana/dashboard-config-map.yaml @@ -252,7 +252,7 @@ data: "steppedLine": false, "targets": [ { - "expr": "sum by(group, topic) (kafka_consumergroup_group_lag > 0)", + "expr": "sum by(group, topic) (kafka_consumergroup_group_lag >= 0)", "format": "time_series", "intervalFactor": 1, "legendFormat": "{{topic}}", -- GitLab