X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/8660244c570cecdb5b4c25a3809cfe01fafebada..d0f3483739a0140802374e6a9f5d0ab5972bd951:/services/keepstore/stats_ticker.go diff --git a/services/keepstore/stats_ticker.go b/services/keepstore/stats_ticker.go index 29daeb6ddd..520d4530c2 100644 --- a/services/keepstore/stats_ticker.go +++ b/services/keepstore/stats_ticker.go @@ -2,7 +2,7 @@ // // SPDX-License-Identifier: AGPL-3.0 -package main +package keepstore import ( "sync" @@ -74,7 +74,6 @@ func (s *statsTicker) TickOps(operations ...string) { return } for _, opType := range operations { - s.opsCounters.With(prometheus.Labels{"operation": "any"}).Inc() s.opsCounters.With(prometheus.Labels{"operation": opType}).Inc() } }