forked from influxdata/kapacitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stream.go
371 lines (343 loc) · 9.25 KB
/
stream.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
package pipeline
import (
"encoding/json"
"fmt"
"reflect"
"time"
"github.com/influxdata/influxdb/influxql"
"github.com/influxdata/kapacitor/tick/ast"
)
// A StreamNode represents the source of data being
// streamed to Kapacitor via any of its inputs.
// The `stream` variable in stream tasks is an instance of
// a StreamNode.
// StreamNode.From is the method/property of this node.
type StreamNode struct {
node
}
func newStreamNode() *StreamNode {
return &StreamNode{
node: node{
desc: "stream",
wants: StreamEdge,
provides: StreamEdge,
},
}
}
// MarshalJSON converts StreamNode to JSON
// tick:ignore
func (n *StreamNode) MarshalJSON() ([]byte, error) {
type Alias StreamNode
var raw = &struct {
TypeOf
*Alias
}{
TypeOf: TypeOf{
Type: "stream",
ID: n.ID(),
},
Alias: (*Alias)(n),
}
return json.Marshal(raw)
}
// UnmarshalJSON converts JSON to an StreamNode
// tick:ignore
func (n *StreamNode) UnmarshalJSON(data []byte) error {
type Alias StreamNode
var raw = &struct {
TypeOf
*Alias
}{
Alias: (*Alias)(n),
}
err := json.Unmarshal(data, raw)
if err != nil {
return err
}
if raw.Type != "stream" {
return fmt.Errorf("error unmarshaling node %d of type %s as StreamNode", raw.ID, raw.Type)
}
n.setID(raw.ID)
return nil
}
// Creates a new FromNode that can be further
// filtered using the Database, RetentionPolicy, Measurement and Where properties.
// From can be called multiple times to create multiple
// independent forks of the data stream.
//
// Example:
// // Select the 'cpu' measurement from just the database 'mydb'
// // and retention policy 'myrp'.
// var cpu = stream
// |from()
// .database('mydb')
// .retentionPolicy('myrp')
// .measurement('cpu')
// // Select the 'load' measurement from any database and retention policy.
// var load = stream
// |from()
// .measurement('load')
// // Join cpu and load streams and do further processing.
// cpu
// |join(load)
// .as('cpu', 'load')
// ...
//
func (s *StreamNode) From() *FromNode {
f := newFromNode()
s.linkChild(f)
return f
}
// A FromNode selects a subset of the data flowing through a StreamNode.
// The stream node allows you to select which portion of the stream you want to process.
//
// Example:
// stream
// |from()
// .database('mydb')
// .retentionPolicy('myrp')
// .measurement('mymeasurement')
// .where(lambda: "host" =~ /logger\d+/)
// |window()
// ...
//
// The above example selects only data points from the database `mydb`
// and retention policy `myrp` and measurement `mymeasurement` where
// the tag `host` matches the regex `logger\d+`
type FromNode struct {
chainnode `json:"-"`
// An expression to filter the data stream.
// tick:ignore
Lambda *ast.LambdaNode `tick:"Where" json:"where"`
// The dimensions by which to group to the data.
// tick:ignore
Dimensions []interface{} `tick:"GroupBy" json:"groupBy"`
// Whether to include the measurement in the group ID.
// tick:ignore
GroupByMeasurementFlag bool `tick:"GroupByMeasurement" json:"groupByMeasurement"`
// The database name.
// If empty any database will be used.
Database string `json:"database"`
// The retention policy name
// If empty any retention policy will be used.
RetentionPolicy string `json:"retentionPolicy"`
// The measurement name
// If empty any measurement will be used.
Measurement string `json:"measurement"`
// Optional duration for truncating timestamps.
// Helpful to ensure data points land on specific boundaries
// Example:
// stream
// |from()
// .measurement('mydata')
// .truncate(1s)
//
// All incoming data will be truncated to 1 second resolution.
Truncate time.Duration `json:"truncate"`
// Optional duration for rounding timestamps.
// Helpful to ensure data points land on specific boundaries
// Example:
// stream
// |from()
// .measurement('mydata')
// .round(1s)
//
// All incoming data will be rounded to the nearest 1 second boundary.
Round time.Duration `json:"round"`
}
func newFromNode() *FromNode {
return &FromNode{
chainnode: newBasicChainNode("from", StreamEdge, StreamEdge),
}
}
// MarshalJSON converts FromNode to JSON
// tick:ignore
func (n *FromNode) MarshalJSON() ([]byte, error) {
type Alias FromNode
var raw = &struct {
TypeOf
*Alias
Round string `json:"round"`
Truncate string `json:"truncate"`
}{
TypeOf: TypeOf{
Type: "from",
ID: n.ID(),
},
Alias: (*Alias)(n),
Round: influxql.FormatDuration(n.Round),
Truncate: influxql.FormatDuration(n.Truncate),
}
return json.Marshal(raw)
}
// UnmarshalJSON converts JSON to an FromNode
// tick:ignore
func (n *FromNode) UnmarshalJSON(data []byte) error {
type Alias FromNode
var raw = &struct {
TypeOf
*Alias
Round string `json:"round"`
Truncate string `json:"truncate"`
}{
Alias: (*Alias)(n),
}
err := json.Unmarshal(data, raw)
if err != nil {
return err
}
if raw.Type != "from" {
return fmt.Errorf("error unmarshaling node %d of type %s as FromNode", raw.ID, raw.Type)
}
n.Round, err = influxql.ParseDuration(raw.Round)
if err != nil {
return err
}
n.Truncate, err = influxql.ParseDuration(raw.Truncate)
if err != nil {
return err
}
n.setID(raw.ID)
return nil
}
//tick:ignore
func (n *FromNode) ChainMethods() map[string]reflect.Value {
return map[string]reflect.Value{
"GroupBy": reflect.ValueOf(n.chainnode.GroupBy),
"Where": reflect.ValueOf(n.chainnode.Where),
}
}
// Creates a new stream node that can be further
// filtered using the Database, RetentionPolicy, Measurement and Where properties.
// From can be called multiple times to create multiple
// independent forks of the data stream.
//
// Example:
// // Select the 'cpu' measurement from just the database 'mydb'
// // and retention policy 'myrp'.
// var cpu = stream
// |from()
// .database('mydb')
// .retentionPolicy('myrp')
// .measurement('cpu')
// // Select the 'load' measurement from any database and retention policy.
// var load = stream
// |from()
// .measurement('load')
// // Join cpu and load streams and do further processing.
// cpu
// |join(load)
// .as('cpu', 'load')
// ...
//
func (s *FromNode) From() *FromNode {
f := newFromNode()
s.linkChild(f)
return f
}
// Filter the current stream using the given expression.
// This expression is a Kapacitor expression. Kapacitor
// expressions are a superset of InfluxQL WHERE expressions.
// See the [expression](https://docs.influxdata.com/kapacitor/latest/tick/expr/) docs for more information.
//
// Multiple calls to the Where method will `AND` together each expression.
//
// Example:
// stream
// |from()
// .where(lambda: condition1)
// .where(lambda: condition2)
//
// The above is equivalent to this
// Example:
// stream
// |from()
// .where(lambda: condition1 AND condition2)
//
//
// NOTE: Becareful to always use `|from` if you want multiple different streams.
//
// Example:
// var data = stream
// |from()
// .measurement('cpu')
// var total = data
// .where(lambda: "cpu" == 'cpu-total')
// var others = data
// .where(lambda: "cpu" != 'cpu-total')
//
// The example above is equivalent to the example below,
// which is obviously not what was intended.
//
// Example:
// var data = stream
// |from()
// .measurement('cpu')
// .where(lambda: "cpu" == 'cpu-total' AND "cpu" != 'cpu-total')
// var total = data
// var others = total
//
// The example below will create two different streams each selecting
// a different subset of the original stream.
//
// Example:
// var data = stream
// |from()
// .measurement('cpu')
// var total = stream
// |from()
// .measurement('cpu')
// .where(lambda: "cpu" == 'cpu-total')
// var others = stream
// |from()
// .measurement('cpu')
// .where(lambda: "cpu" != 'cpu-total')
//
//
// If empty then all data points are considered to match.
// tick:property
func (s *FromNode) Where(lambda *ast.LambdaNode) *FromNode {
if s.Lambda != nil {
s.Lambda.Expression = &ast.BinaryNode{
Operator: ast.TokenAnd,
Left: s.Lambda.Expression,
Right: lambda.Expression,
}
} else {
s.Lambda = lambda
}
return s
}
// Group the data by a set of tags.
//
// Can pass literal * to group by all dimensions.
// Example:
// stream
// |from()
// .groupBy(*)
// tick:property
func (s *FromNode) GroupBy(tag ...interface{}) *FromNode {
s.Dimensions = tag
return s
}
// If set will include the measurement name in the group ID.
// Along with any other group by dimensions.
//
// Example:
// stream
// |from()
// .database('mydb')
// .groupByMeasurement()
// .groupBy('host')
//
// The above example selects all measurements from the database 'mydb' and
// then each point is grouped by the host tag and measurement name.
// Thus keeping measurements in their own groups.
// tick:property
func (n *FromNode) GroupByMeasurement() *FromNode {
n.GroupByMeasurementFlag = true
return n
}
func (s *FromNode) validate() error {
return validateDimensions(s.Dimensions, nil)
}