forked from influxdata/kapacitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
state_tracking.go
190 lines (158 loc) · 4.36 KB
/
state_tracking.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
package kapacitor
import (
"fmt"
"log"
"time"
"github.com/influxdata/kapacitor/models"
"github.com/influxdata/kapacitor/pipeline"
"github.com/influxdata/kapacitor/tick/ast"
"github.com/influxdata/kapacitor/tick/stateful"
)
type stateTracker interface {
track(p models.BatchPoint, inState bool) interface{}
reset()
}
type stateTrackingGroup struct {
stateful.Expression
stateful.ScopePool
tracker stateTracker
}
type StateTrackingNode struct {
node
lambda *ast.LambdaNode
as string
newTracker func() stateTracker
groups map[models.GroupID]*stateTrackingGroup
}
func (stn *StateTrackingNode) group(g models.GroupID) (*stateTrackingGroup, error) {
stg := stn.groups[g]
if stg == nil {
stg = &stateTrackingGroup{}
var err error
stg.Expression, err = stateful.NewExpression(stn.lambda.Expression)
if err != nil {
return nil, fmt.Errorf("Failed to compile expression: %v", err)
}
stg.ScopePool = stateful.NewScopePool(ast.FindReferenceVariables(stn.lambda.Expression))
stg.tracker = stn.newTracker()
stn.groups[g] = stg
}
return stg, nil
}
func (stn *StateTrackingNode) runStateTracking(_ []byte) error {
switch stn.Provides() {
case pipeline.StreamEdge:
for p, ok := stn.ins[0].NextPoint(); ok; p, ok = stn.ins[0].NextPoint() {
stn.timer.Start()
stg, err := stn.group(p.Group)
if err != nil {
return err
}
pass, err := EvalPredicate(stg.Expression, stg.ScopePool, p.Time, p.Fields, p.Tags)
if err != nil {
stn.incrementErrorCount()
stn.logger.Println("E! error while evaluating expression:", err)
stn.timer.Stop()
continue
}
p.Fields = p.Fields.Copy()
p.Fields[stn.as] = stg.tracker.track(models.BatchPointFromPoint(p), pass)
stn.timer.Stop()
for _, child := range stn.outs {
err := child.CollectPoint(p)
if err != nil {
return err
}
}
}
case pipeline.BatchEdge:
for b, ok := stn.ins[0].NextBatch(); ok; b, ok = stn.ins[0].NextBatch() {
stn.timer.Start()
stg, err := stn.group(b.Group)
if err != nil {
return err
}
stg.tracker.reset()
for i := 0; i < len(b.Points); {
p := &b.Points[i]
pass, err := EvalPredicate(stg.Expression, stg.ScopePool, p.Time, p.Fields, p.Tags)
if err != nil {
stn.incrementErrorCount()
stn.logger.Println("E! error while evaluating epression:", err)
b.Points = append(b.Points[:i], b.Points[i+1:]...)
continue
}
i++
p.Fields = p.Fields.Copy()
p.Fields[stn.as] = stg.tracker.track(*p, pass)
}
stn.timer.Stop()
for _, child := range stn.outs {
err := child.CollectBatch(b)
if err != nil {
return err
}
}
}
}
return nil
}
type stateDurationTracker struct {
sd *pipeline.StateDurationNode
startTime time.Time
}
func (sdt *stateDurationTracker) reset() {
sdt.startTime = time.Time{}
}
func (sdt *stateDurationTracker) track(p models.BatchPoint, inState bool) interface{} {
if !inState {
sdt.startTime = time.Time{}
return float64(-1)
}
if sdt.startTime.IsZero() {
sdt.startTime = p.Time
}
return float64(p.Time.Sub(sdt.startTime)) / float64(sdt.sd.Unit)
}
func newStateDurationNode(et *ExecutingTask, sd *pipeline.StateDurationNode, l *log.Logger) (*StateTrackingNode, error) {
if sd.Lambda == nil {
return nil, fmt.Errorf("nil expression passed to StateDurationNode")
}
stn := &StateTrackingNode{
node: node{Node: sd, et: et, logger: l},
lambda: sd.Lambda,
as: sd.As,
groups: make(map[models.GroupID]*stateTrackingGroup),
newTracker: func() stateTracker { return &stateDurationTracker{sd: sd} },
}
stn.node.runF = stn.runStateTracking
return stn, nil
}
type stateCountTracker struct {
count int64
}
func (sct *stateCountTracker) reset() {
sct.count = 0
}
func (sct *stateCountTracker) track(p models.BatchPoint, inState bool) interface{} {
if !inState {
sct.count = 0
return int64(-1)
}
sct.count++
return sct.count
}
func newStateCountNode(et *ExecutingTask, sc *pipeline.StateCountNode, l *log.Logger) (*StateTrackingNode, error) {
if sc.Lambda == nil {
return nil, fmt.Errorf("nil expression passed to StateCountNode")
}
stn := &StateTrackingNode{
node: node{Node: sc, et: et, logger: l},
lambda: sc.Lambda,
as: sc.As,
groups: make(map[models.GroupID]*stateTrackingGroup),
newTracker: func() stateTracker { return &stateCountTracker{} },
}
stn.node.runF = stn.runStateTracking
return stn, nil
}