From e8ca3d64f46d08dbdc3c0d8921ffc1a798104a32 Mon Sep 17 00:00:00 2001 From: George Goldberg Date: Mon, 25 Sep 2017 21:44:44 +0100 Subject: PLT-7470: Add metrics for searches. (#7507) --- api4/post.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'api4/post.go') diff --git a/api4/post.go b/api4/post.go index 297c70a87..0cd791c6f 100644 --- a/api4/post.go +++ b/api4/post.go @@ -6,8 +6,10 @@ package api4 import ( "net/http" "strconv" + "time" l4g "github.com/alecthomas/log4go" + "github.com/mattermost/mattermost-server/app" "github.com/mattermost/mattermost-server/model" "github.com/mattermost/mattermost-server/utils" @@ -299,7 +301,17 @@ func searchPosts(c *Context, w http.ResponseWriter, r *http.Request) { isOrSearch, _ := props["is_or_search"].(bool) + startTime := time.Now() + posts, err := c.App.SearchPostsInTeam(terms, c.Session.UserId, c.Params.TeamId, isOrSearch) + + elapsedTime := float64(time.Since(startTime)) / float64(time.Second) + metrics := c.App.Metrics + if metrics != nil { + metrics.IncrementPostsSearchCounter() + metrics.ObservePostsSearchDuration(elapsedTime) + } + if err != nil { c.Err = err return -- cgit v1.2.3-1-g7c22