Adding metrics to cache for profile by ids api (#4925)

This commit is contained in:
Christopher Speller
2017-01-03 09:57:38 -05:00
committed by enahum
parent 4bca74d5c1
commit 96b4e0ed87
2 changed files with 11 additions and 0 deletions

View File

@@ -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