-
Notifications
You must be signed in to change notification settings - Fork 53
/
node.go
347 lines (283 loc) · 9.46 KB
/
node.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
package agent
import (
"context"
"fmt"
"net/http"
"sort"
"strings"
"sync"
"time"
"github.com/rancher/opni/pkg/clients"
"github.com/rancher/opni/plugins/metrics/pkg/apis/remoteread"
"github.com/rancher/opni/plugins/metrics/pkg/apis/remotewrite"
"github.com/samber/lo"
capabilityv1 "github.com/rancher/opni/pkg/apis/capability/v1"
controlv1 "github.com/rancher/opni/pkg/apis/control/v1"
corev1 "github.com/rancher/opni/pkg/apis/core/v1"
"github.com/rancher/opni/pkg/capabilities/wellknown"
"github.com/rancher/opni/pkg/health"
"github.com/rancher/opni/pkg/util"
"github.com/rancher/opni/plugins/metrics/pkg/agent/drivers"
"github.com/rancher/opni/plugins/metrics/pkg/apis/node"
"go.uber.org/zap"
"golang.org/x/exp/slices"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
"google.golang.org/protobuf/types/known/emptypb"
"google.golang.org/protobuf/types/known/timestamppb"
)
type MetricsNode struct {
capabilityv1.UnsafeNodeServer
controlv1.UnsafeHealthServer
// we only need a subset of the methods
remoteread.UnsafeRemoteReadAgentServer
logger *zap.SugaredLogger
nodeClientMu sync.RWMutex
nodeClient node.NodeMetricsCapabilityClient
identityClientMu sync.RWMutex
identityClient controlv1.IdentityClient
healthListenerClientMu sync.RWMutex
healthListenerClient controlv1.HealthListenerClient
targetRunnerMu sync.RWMutex
targetRunner TargetRunner
configMu sync.RWMutex
config *node.MetricsCapabilityConfig
listeners []drivers.MetricsNodeConfigurator
conditions health.ConditionTracker
nodeDriverMu sync.RWMutex
nodeDrivers []drivers.MetricsNodeDriver
}
func NewMetricsNode(ct health.ConditionTracker, lg *zap.SugaredLogger) *MetricsNode {
node := &MetricsNode{
logger: lg,
conditions: ct,
targetRunner: NewTargetRunner(lg),
}
node.conditions.AddListener(node.sendHealthUpdate)
node.targetRunner.SetRemoteReaderClient(NewRemoteReader(&http.Client{}))
// FIXME: this is a hack, update the old sync code to use delegates instead
node.conditions.AddListener(func(key string) {
if key == CondNodeDriver {
node.logger.Info("forcing sync due to node driver status change")
go func() {
node.doSync(context.TODO())
}()
}
})
return node
}
func (m *MetricsNode) sendHealthUpdate() {
// TODO this can be optimized to de-duplicate rapid updates
m.healthListenerClientMu.RLock()
defer m.healthListenerClientMu.RUnlock()
if m.healthListenerClient != nil {
health, err := m.GetHealth(context.TODO(), &emptypb.Empty{})
if err != nil {
m.logger.With(
zap.Error(err),
).Warn("failed to get node health")
return
}
if _, err := m.healthListenerClient.UpdateHealth(context.TODO(), health); err != nil {
m.logger.With(
zap.Error(err),
).Warn("failed to send node health update")
} else {
m.logger.Debug("sent node health update")
}
}
}
func (m *MetricsNode) AddConfigListener(ch drivers.MetricsNodeConfigurator) {
m.listeners = append(m.listeners, ch)
}
func (m *MetricsNode) SetClients(
nodeClient node.NodeMetricsCapabilityClient,
identityClient controlv1.IdentityClient,
healthListenerClient controlv1.HealthListenerClient,
) {
m.nodeClientMu.Lock()
m.nodeClient = nodeClient
m.nodeClientMu.Unlock()
m.identityClientMu.Lock()
m.identityClient = identityClient
m.identityClientMu.Unlock()
m.healthListenerClientMu.Lock()
m.healthListenerClient = healthListenerClient
m.healthListenerClientMu.Unlock()
go func() {
m.doSync(context.Background())
m.sendHealthUpdate()
}()
}
func (m *MetricsNode) SetRemoteWriter(client clients.Locker[remotewrite.RemoteWriteClient]) {
m.targetRunnerMu.Lock()
defer m.targetRunnerMu.Unlock()
m.targetRunner.SetRemoteWriteClient(client)
}
func (m *MetricsNode) AddNodeDriver(driver drivers.MetricsNodeDriver) {
m.nodeDriverMu.Lock()
defer m.nodeDriverMu.Unlock()
m.nodeDrivers = append(m.nodeDrivers, driver)
}
func (m *MetricsNode) Info(_ context.Context, _ *emptypb.Empty) (*capabilityv1.Details, error) {
return &capabilityv1.Details{
Name: wellknown.CapabilityMetrics,
Source: "plugin_metrics",
Drivers: drivers.NodeDrivers.List(),
}, nil
}
// Implements capabilityv1.NodeServer
func (m *MetricsNode) SyncNow(_ context.Context, req *capabilityv1.Filter) (*emptypb.Empty, error) {
if len(req.CapabilityNames) > 0 {
if !slices.Contains(req.CapabilityNames, wellknown.CapabilityMetrics) {
m.logger.Debug("ignoring sync request due to capability filter")
return &emptypb.Empty{}, nil
}
}
m.logger.Debug("received sync request")
m.nodeClientMu.RLock()
defer m.nodeClientMu.RUnlock()
if m.nodeClient == nil {
return nil, status.Error(codes.Unavailable, "not connected to node server")
}
defer func() {
ctx, ca := context.WithTimeout(context.Background(), 10*time.Second)
go func() {
defer ca()
m.doSync(ctx)
}()
}()
return &emptypb.Empty{}, nil
}
// Implements controlv1.HealthServer
func (m *MetricsNode) GetHealth(_ context.Context, _ *emptypb.Empty) (*corev1.Health, error) {
m.configMu.RLock()
defer m.configMu.RUnlock()
conditions := m.conditions.List()
sort.Strings(conditions)
return &corev1.Health{
Ready: len(conditions) == 0,
Conditions: conditions,
Timestamp: timestamppb.New(m.conditions.LastModified()),
}, nil
}
// Start Implements remoteread.RemoteReadServer
func (m *MetricsNode) Start(_ context.Context, request *remoteread.StartReadRequest) (*emptypb.Empty, error) {
m.targetRunnerMu.Lock()
defer m.targetRunnerMu.Unlock()
if err := m.targetRunner.Start(request.Target, request.Query); err != nil {
return nil, err
}
return &emptypb.Empty{}, nil
}
func (m *MetricsNode) Stop(_ context.Context, request *remoteread.StopReadRequest) (*emptypb.Empty, error) {
m.targetRunnerMu.Lock()
defer m.targetRunnerMu.Unlock()
if err := m.targetRunner.Stop(request.Meta.Name); err != nil {
return nil, err
}
return &emptypb.Empty{}, nil
}
func (m *MetricsNode) GetTargetStatus(_ context.Context, request *remoteread.TargetStatusRequest) (*remoteread.TargetStatus, error) {
m.targetRunnerMu.RLock()
defer m.targetRunnerMu.RUnlock()
return m.targetRunner.GetStatus(request.Meta.Name)
}
func (m *MetricsNode) Discover(ctx context.Context, request *remoteread.DiscoveryRequest) (*remoteread.DiscoveryResponse, error) {
m.nodeDriverMu.RLock()
defer m.nodeDriverMu.RUnlock()
if len(m.nodeDrivers) == 0 {
m.logger.Warnf("no node driver available for discvoery")
return &remoteread.DiscoveryResponse{
Entries: []*remoteread.DiscoveryEntry{},
}, nil
}
namespace := lo.FromPtrOr(request.Namespace, "")
var allEntries []*remoteread.DiscoveryEntry
for _, driver := range m.nodeDrivers {
entries, err := driver.DiscoverPrometheuses(ctx, namespace)
if err != nil {
return nil, fmt.Errorf("could not discover Prometheus instances: %w", err)
}
allEntries = append(allEntries, entries...)
}
return &remoteread.DiscoveryResponse{
Entries: allEntries,
}, nil
}
func (m *MetricsNode) doSync(ctx context.Context) {
m.logger.Debug("syncing metrics node")
m.nodeClientMu.RLock()
defer m.nodeClientMu.RUnlock()
m.identityClientMu.RLock()
defer m.identityClientMu.RUnlock()
if m.nodeClient == nil {
m.conditions.Set(health.CondConfigSync, health.StatusPending, "no client, skipping sync")
return
}
if m.identityClient == nil {
m.conditions.Set(health.CondConfigSync, health.StatusPending, "no client, skipping sync")
return
}
m.configMu.RLock()
syncResp, err := m.nodeClient.Sync(ctx, &node.SyncRequest{
CurrentConfig: util.ProtoClone(m.config),
})
m.configMu.RUnlock()
if err != nil {
err := fmt.Errorf("error syncing metrics node: %w", err)
m.conditions.Set(health.CondConfigSync, health.StatusFailure, err.Error())
return
}
m.conditions.Clear(health.CondConfigSync)
switch syncResp.ConfigStatus {
case node.ConfigStatus_UpToDate:
m.logger.Info("metrics node config is up to date")
case node.ConfigStatus_NeedsUpdate:
m.logger.Info("updating metrics node config")
if err := m.updateConfig(ctx, syncResp.UpdatedConfig); err != nil {
m.conditions.Set(health.CondNodeDriver, health.StatusFailure, err.Error())
return
} else {
m.conditions.Clear(health.CondNodeDriver)
}
}
}
// requires identityClientMu to be held (either R or W)
func (m *MetricsNode) updateConfig(ctx context.Context, config *node.MetricsCapabilityConfig) error {
id, err := m.identityClient.Whoami(context.Background(), &emptypb.Empty{})
if err != nil {
m.logger.With(zap.Error(err)).Errorf("error fetching node id", err)
return err
}
if !m.configMu.TryLock() {
m.logger.Debug("waiting on a previous config update to finish...")
m.configMu.Lock()
}
defer m.configMu.Unlock()
if !config.Enabled && len(config.Conditions) > 0 {
m.conditions.Set(health.CondBackend, health.StatusDisabled, strings.Join(config.Conditions, ", "))
} else {
m.conditions.Clear(health.CondBackend)
}
var eg util.MultiErrGroup
for _, cfg := range m.listeners {
cfg := cfg
eg.Go(func() error {
return cfg.ConfigureNode(id.Id, config)
})
}
eg.Wait()
// TODO: this should ideally only be done if eg.Error() is nil, however
// there is a risk of an infinite sync loop since we have to manually
// re-sync when the driver status changes (see note in NewMetricsNode)
// Once we replace the sync manager with delegates, we can safely return
// errors from Sync and avoid the status condition workaround.
m.config = config
if err := eg.Error(); err != nil {
m.config.Conditions = append(config.Conditions, err.Error())
m.logger.With(zap.Error(err)).Error("node configuration error")
return err
}
return nil
}