summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattermost/platform/einterfaces/metrics.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mattermost/platform/einterfaces/metrics.go')
-rw-r--r--vendor/github.com/mattermost/platform/einterfaces/metrics.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/vendor/github.com/mattermost/platform/einterfaces/metrics.go b/vendor/github.com/mattermost/platform/einterfaces/metrics.go
index f7d660da..cc2eea97 100644
--- a/vendor/github.com/mattermost/platform/einterfaces/metrics.go
+++ b/vendor/github.com/mattermost/platform/einterfaces/metrics.go
@@ -8,6 +8,7 @@ type MetricsInterface interface {
StopServer()
IncrementPostCreate()
+ IncrementWebhookPost()
IncrementPostSentEmail()
IncrementPostSentPush()
IncrementPostBroadcast()
@@ -17,6 +18,9 @@ type MetricsInterface interface {
IncrementHttpError()
ObserveHttpRequestDuration(elapsed float64)
+ IncrementClusterRequest()
+ ObserveClusterRequestDuration(elapsed float64)
+
IncrementLogin()
IncrementLoginFail()
@@ -25,6 +29,10 @@ type MetricsInterface interface {
IncrementMemCacheHitCounter(cacheName string)
IncrementMemCacheMissCounter(cacheName string)
+ IncrementMemCacheMissCounterSession()
+ IncrementMemCacheHitCounterSession()
+
+ IncrementWebsocketEvent(eventType string)
AddMemCacheHitCounter(cacheName string, amount float64)
AddMemCacheMissCounter(cacheName string, amount float64)