summaryrefslogtreecommitdiffstats
path: root/einterfaces
diff options
context:
space:
mode:
Diffstat (limited to 'einterfaces')
-rw-r--r--einterfaces/metrics.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/einterfaces/metrics.go b/einterfaces/metrics.go
index c4ec9dccf..f7d660da3 100644
--- a/einterfaces/metrics.go
+++ b/einterfaces/metrics.go
@@ -25,6 +25,9 @@ type MetricsInterface interface {
IncrementMemCacheHitCounter(cacheName string)
IncrementMemCacheMissCounter(cacheName string)
+
+ AddMemCacheHitCounter(cacheName string, amount float64)
+ AddMemCacheMissCounter(cacheName string, amount float64)
}
var theMetricsInterface MetricsInterface