From 96b4e0ed8767c879d5cd235b76feac43511835ed Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Tue, 3 Jan 2017 09:57:38 -0500 Subject: Adding metrics to cache for profile by ids api (#4925) --- store/sql_user_store.go | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'store/sql_user_store.go') diff --git a/store/sql_user_store.go b/store/sql_user_store.go index 8db0e9624..2ce1e6eab 100644 --- a/store/sql_user_store.go +++ b/store/sql_user_store.go @@ -804,6 +804,7 @@ func (us SqlUserStore) GetProfileByIds(userIds []string, allowFromCache bool) St go func() { result := StoreResult{} + metrics := einterfaces.GetMetricsInterface() var users []*model.User userMap := make(map[string]*model.User) @@ -820,8 +821,15 @@ func (us SqlUserStore) GetProfileByIds(userIds []string, allowFromCache bool) St remainingUserIds = append(remainingUserIds, userId) } } + if metrics != nil { + metrics.AddMemCacheHitCounter("Profile By Ids", float64(len(userMap))) + metrics.AddMemCacheMissCounter("Profile By Ids", float64(len(remainingUserIds))) + } } else { remainingUserIds = userIds + if metrics != nil { + metrics.AddMemCacheMissCounter("Profile By Ids", float64(len(remainingUserIds))) + } } // If everything came from the cache then just return -- cgit v1.2.3-1-g7c22