Refactor the multi-host salt install page.
[arvados.git] / services / keepstore / stats_ticker.go
index 29daeb6dddf42a5c81ca8df7a01cfabbebec6a19..520d4530c2ac2404ca47f561b3dd08c015f1e832 100644 (file)
@@ -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()
        }
 }