From eb01da4b7800892fad35318089a14c65ab00ded3 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Hugly Date: Mon, 6 Nov 2023 19:15:23 +0100 Subject: [PATCH] router: Unfixing that bug was the wrong move. ...Or may be I had already rebased on top of the trunk's fix. Don't know. --- router/metrics.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router/metrics.go b/router/metrics.go index df7af4c74f..6c7f9ad7d4 100644 --- a/router/metrics.go +++ b/router/metrics.go @@ -283,7 +283,7 @@ func newInterfaceMetrics( localIA addr.IA, neighbors map[uint16]addr.IA) interfaceMetrics { - ifLabels := interfaceLabels(0, localIA, neighbors) + ifLabels := interfaceLabels(id, localIA, neighbors) m := interfaceMetrics{} for sc := minSizeClass; sc < maxSizeClass; sc++ { scLabels := prometheus.Labels{"sizeclass": sc.String()}