Update pkg/iptables/metrics.go

Co-authored-by: leonnicolas <60091705+leonnicolas@users.noreply.github.com>
This commit is contained in:
Alex Stockinger
2022-07-26 14:10:28 +02:00
committed by GitHub
parent c50a688b58
commit 7c2c391b6a

View File

@@ -105,7 +105,7 @@ func (m *metricsClientWrapper) ListChains(table string) ([]string, error) {
m.operationCounter.With(prometheus.Labels{
"operation": "ListChains",
"table": table,
"chain": "",
"chain": "*",
}).Inc()
return m.client.ListChains(table)
}