-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathasync_routine_monitor.go
80 lines (68 loc) · 1.71 KB
/
async_routine_monitor.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
74
75
76
77
78
79
80
package async
import (
"time"
)
type AsyncRoutineMonitor interface {
startMonitoring()
IsSnapshottingEnabled() bool
IsStarted() bool
Start()
Stop()
}
var _ AsyncRoutineMonitor = (*asyncRoutineManager)(nil)
func (arm *asyncRoutineManager) IsSnapshottingEnabled() bool {
return arm.snapshottingToggle()
}
func (arm *asyncRoutineManager) startMonitoring() {
NewAsyncRoutine("async-routine-monitor", arm.ctx, func() {
ticker := time.NewTicker(arm.snapshottingInterval)
defer ticker.Stop()
for {
select {
case <-arm.monitorStopChannel:
arm.monitorStarted = false
arm.monitorWaitingGroup.Done()
return
case <-ticker.C:
if arm.IsEnabled() && arm.IsSnapshottingEnabled() {
arm.snapshot()
}
}
}
}).withRoutineManager(arm).
Run()
}
func (arm *asyncRoutineManager) IsStarted() bool {
return arm.monitorStarted
}
func (arm *asyncRoutineManager) Stop() {
arm.monitorLock.Lock()
defer arm.monitorLock.Unlock()
if arm.IsStarted() {
arm.monitorStopChannel <- true
}
arm.monitorWaitingGroup.Wait()
}
func (arm *asyncRoutineManager) Start() {
arm.monitorLock.Lock()
defer arm.monitorLock.Unlock()
if !arm.IsStarted() {
arm.monitorStarted = true
arm.startMonitoring()
arm.monitorWaitingGroup.Add(1)
}
}
func (arm *asyncRoutineManager) snapshot() {
snapshot := arm.GetSnapshot()
for _, r := range snapshot.GetTimedOutRoutines() {
arm.notify(func(observer RoutinesObserver) {
observer.RoutineExceededTimebox(r)
})
}
arm.notify(func(observer RoutinesObserver) {
observer.RunningRoutineCount(snapshot.totalRoutineCount)
for _, name := range snapshot.GetRunningRoutinesNames() {
observer.RunningRoutineByNameCount(name, snapshot.GetRunningRoutinesCount(name))
}
})
}