-
Notifications
You must be signed in to change notification settings - Fork 53
/
rules.go
177 lines (167 loc) · 4.64 KB
/
rules.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
package agent
import (
"context"
"errors"
"fmt"
"sync"
"time"
"github.com/rancher/opni/pkg/config/v1beta1"
"github.com/rancher/opni/pkg/health"
"github.com/rancher/opni/pkg/rules"
"github.com/rancher/opni/pkg/util/notifier"
"github.com/rancher/opni/plugins/metrics/pkg/apis/remotewrite"
"go.uber.org/zap"
"google.golang.org/grpc"
"gopkg.in/yaml.v3"
)
type RuleStreamer struct {
logger *zap.SugaredLogger
remoteWriteClientMu sync.Mutex
remoteWriteClient remotewrite.RemoteWriteClient
conditions health.ConditionTracker
}
func NewRuleStreamer(ct health.ConditionTracker, lg *zap.SugaredLogger) *RuleStreamer {
return &RuleStreamer{
logger: lg,
conditions: ct,
}
}
func (s *RuleStreamer) SetRemoteWriteClient(client remotewrite.RemoteWriteClient) {
s.remoteWriteClientMu.Lock()
defer s.remoteWriteClientMu.Unlock()
s.remoteWriteClient = client
}
func (s *RuleStreamer) Run(ctx context.Context, config *v1beta1.RulesSpec, finder notifier.Finder[rules.RuleGroup]) error {
s.conditions.Set(CondRuleSync, health.StatusPending, "")
defer s.conditions.Clear(CondRuleSync)
lg := s.logger
updateC, err := s.streamRuleGroupUpdates(ctx, config, finder)
if err != nil {
return err
}
pending := make(chan [][]byte, 1)
defer close(pending)
ctx, ca := context.WithCancel(ctx)
defer ca()
go func() {
for {
var docs [][]byte
select {
case <-ctx.Done():
lg.With(
zap.Error(ctx.Err()),
).Debug("rule discovery stream closing")
return
case docs = <-pending:
}
lg.Debug("sending alert rules to gateway")
RETRY:
for {
s.remoteWriteClientMu.Lock()
client := s.remoteWriteClient
s.remoteWriteClientMu.Unlock()
for _, doc := range docs {
if client == nil {
err = errors.New("not connected")
} else {
ctx, ca := context.WithTimeout(ctx, time.Second*5)
_, err = client.SyncRules(ctx, &remotewrite.Payload{
Headers: map[string]string{
"Content-Type": "application/yaml",
},
Contents: doc,
}, grpc.UseCompressor("gzip"))
ca()
}
if err != nil {
s.conditions.Set(CondRuleSync, health.StatusFailure, err.Error())
// retry, unless another update is received from the channel
lg.With(
zap.Error(err),
).Error("failed to send alert rules to gateway (retry in 5 seconds)")
select {
case docs = <-pending:
lg.Debug("updated rules were received during backoff, retrying immediately")
continue RETRY
case <-time.After(5 * time.Second):
continue RETRY
case <-ctx.Done():
return
}
}
}
s.conditions.Clear(CondRuleSync, fmt.Sprintf("successfully sent %d alert rules to gateway", len(docs)))
break
}
}
}()
for {
select {
case <-ctx.Done():
lg.With(
zap.Error(ctx.Err()),
).Warn("rule discovery stream closing")
return nil
case yamlDocs, ok := <-updateC:
if !ok {
lg.Debug("rule discovery stream closed")
return nil
}
lg.Debug("waiting for updated rule documents...")
pending <- yamlDocs
}
}
}
func (s *RuleStreamer) streamRuleGroupUpdates(
ctx context.Context,
config *v1beta1.RulesSpec,
finder notifier.Finder[rules.RuleGroup],
) (<-chan [][]byte, error) {
s.logger.Debug("configuring rule discovery")
s.logger.Debug("rule discovery configured")
searchInterval := time.Minute * 15
if interval := config.GetDiscovery().GetInterval(); interval != "" {
duration, err := time.ParseDuration(interval)
if err != nil {
return nil, fmt.Errorf("failed to parse discovery interval: %w", err)
}
searchInterval = duration
}
notifier := notifier.NewPeriodicUpdateNotifier(ctx, finder, searchInterval)
s.logger.With(
zap.String("interval", searchInterval.String()),
).Debug("rule discovery notifier configured")
notifierC := notifier.NotifyC(ctx)
s.logger.Debug("starting rule group update notifier")
groupYamlDocs := make(chan [][]byte, cap(notifierC))
go func() {
defer close(groupYamlDocs)
for {
ruleGroups, ok := <-notifierC
if !ok {
s.logger.Debug("rule discovery channel closed")
return
}
s.logger.Debug("received updated rule groups from discovery")
go func() {
groupYamlDocs <- s.marshalRuleGroups(ruleGroups)
}()
}
}()
return groupYamlDocs, nil
}
func (s *RuleStreamer) marshalRuleGroups(ruleGroups []rules.RuleGroup) [][]byte {
yamlDocs := make([][]byte, 0, len(ruleGroups))
for _, ruleGroup := range ruleGroups {
doc, err := yaml.Marshal(ruleGroup)
if err != nil {
s.logger.With(
zap.Error(err),
zap.String("group", ruleGroup.Name),
).Error("failed to marshal rule group")
continue
}
yamlDocs = append(yamlDocs, doc)
}
return yamlDocs
}