-
Notifications
You must be signed in to change notification settings - Fork 1
/
monitors.go
73 lines (48 loc) · 1.4 KB
/
monitors.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package occamy
import (
"time"
)
// region Monitors (combined)
type Monitors struct {
Error ErrorMonitor
Latency LatencyMonitor
Resource ResourceMonitor
}
func ensureMonitorsAreValid(monitors Monitors) Monitors {
if monitors.Error == nil {
monitors.Error = NopErrorMonitor{}
}
if monitors.Latency == nil {
monitors.Latency = NopLatencyMonitor{}
}
if monitors.Resource == nil {
monitors.Resource = NopResourceMonitor{}
}
return monitors
}
// endregion
// region Error Monitor
type ErrorMonitor interface {
RecordError(err error)
}
type NopErrorMonitor struct{}
func (NopErrorMonitor) RecordError(_ error) {}
// endregion
// region Latency Monitor
type LatencyMonitor interface {
RecordProcessDuration(process string, duration time.Duration)
RecordTaskDuration(group string, status SlotStatus, duration time.Duration)
}
type NopLatencyMonitor struct{}
func (NopLatencyMonitor) RecordProcessDuration(_ string, _ time.Duration) {}
func (NopLatencyMonitor) RecordTaskDuration(_ string, _ SlotStatus, _ time.Duration) {}
// endregion
// region Resource Monitor
type ResourceMonitor interface {
RecordTaskStarting(group string, status SlotStatus)
RecordTaskStopping(group string, status SlotStatus)
}
type NopResourceMonitor struct{}
func (NopResourceMonitor) RecordTaskStarting(_ string, _ SlotStatus) {}
func (NopResourceMonitor) RecordTaskStopping(_ string, _ SlotStatus) {}
// endregion