-
Notifications
You must be signed in to change notification settings - Fork 84
/
statistics.go
58 lines (44 loc) · 927 Bytes
/
statistics.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package statistics
type Monitor interface {
Increment(metric string)
Close()
}
type Statistics struct {
monitor Monitor
}
func (s *Statistics) Increment(metric string) {
s.monitor.Increment(metric)
}
func (s *Statistics) Stop() {
s.monitor.Close()
}
func (s *Statistics) SetMonitor(monitor Monitor) {
s.monitor = monitor
}
func NewStatistics() *Statistics {
return &Statistics{
monitor: NewStatsHatMonitor(),
}
}
var statistics = NewStatistics()
func TrackMockRequest() {
statistics.Increment("requests.mock")
}
func TrackConsoleRequest() {
statistics.Increment("requests.console")
}
func TrackVerifyRequest() {
statistics.Increment("requests.verify")
}
func TrackScenarioFeature() {
statistics.Increment("feature.scenario")
}
func TrackProxyFeature() {
statistics.Increment("feature.proxy")
}
func SetMonitor(monitor Monitor) {
statistics.SetMonitor(monitor)
}
func Stop() {
statistics.Stop()
}