forked from influxdata/kapacitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.go
101 lines (92 loc) · 2.39 KB
/
default.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
package kapacitor
import (
"log"
"github.com/influxdata/kapacitor/expvar"
"github.com/influxdata/kapacitor/models"
"github.com/influxdata/kapacitor/pipeline"
)
const (
statsFieldsDefaulted = "fields_defaulted"
statsTagsDefaulted = "tags_defaulted"
)
type DefaultNode struct {
node
d *pipeline.DefaultNode
fieldsDefaulted *expvar.Int
tagsDefaulted *expvar.Int
}
// Create a new DefaultNode which applies a transformation func to each point in a stream and returns a single point.
func newDefaultNode(et *ExecutingTask, n *pipeline.DefaultNode, l *log.Logger) (*DefaultNode, error) {
dn := &DefaultNode{
node: node{Node: n, et: et, logger: l},
d: n,
}
dn.node.runF = dn.runDefault
return dn, nil
}
func (e *DefaultNode) runDefault(snapshot []byte) error {
e.fieldsDefaulted = &expvar.Int{}
e.tagsDefaulted = &expvar.Int{}
e.statMap.Set(statsFieldsDefaulted, e.fieldsDefaulted)
e.statMap.Set(statsTagsDefaulted, e.tagsDefaulted)
switch e.Provides() {
case pipeline.StreamEdge:
for p, ok := e.ins[0].NextPoint(); ok; p, ok = e.ins[0].NextPoint() {
e.timer.Start()
p.Fields, p.Tags = e.setDefaults(p.Fields, p.Tags)
p.UpdateGroup()
e.timer.Stop()
for _, child := range e.outs {
err := child.CollectPoint(p)
if err != nil {
return err
}
}
}
case pipeline.BatchEdge:
for b, ok := e.ins[0].NextBatch(); ok; b, ok = e.ins[0].NextBatch() {
e.timer.Start()
b.Points = b.ShallowCopyPoints()
_, b.Tags = e.setDefaults(nil, b.Tags)
b.UpdateGroup()
for i := range b.Points {
b.Points[i].Fields, b.Points[i].Tags = e.setDefaults(b.Points[i].Fields, b.Points[i].Tags)
}
e.timer.Stop()
for _, child := range e.outs {
err := child.CollectBatch(b)
if err != nil {
return err
}
}
}
}
return nil
}
func (d *DefaultNode) setDefaults(fields models.Fields, tags models.Tags) (models.Fields, models.Tags) {
newFields := fields
fieldsCopied := false
for field, value := range d.d.Fields {
if v := fields[field]; v == nil {
if !fieldsCopied {
newFields = newFields.Copy()
fieldsCopied = true
}
d.fieldsDefaulted.Add(1)
newFields[field] = value
}
}
newTags := tags
tagsCopied := false
for tag, value := range d.d.Tags {
if v := tags[tag]; v == "" {
if !tagsCopied {
newTags = newTags.Copy()
tagsCopied = true
}
d.tagsDefaulted.Add(1)
newTags[tag] = value
}
}
return newFields, newTags
}