forked from elastic/elastic-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_patcher.go
49 lines (39 loc) · 1.23 KB
/
config_patcher.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
// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
// or more contributor license agreements. Licensed under the Elastic License;
// you may not use this file except in compliance with the Elastic License.
package coordinator
import (
"context"
)
type ConfigPatch func(change ConfigChange) ConfigChange
// ConfigPatchManager is a decorator to restore some agent settings from the elastic agent configuration file
type ConfigPatchManager struct {
inner ConfigManager
outCh chan ConfigChange
patchFn ConfigPatch
}
func (c ConfigPatchManager) Run(ctx context.Context) error {
go c.patch(c.inner.Watch(), c.outCh)
return c.inner.Run(ctx)
}
func (c ConfigPatchManager) Errors() <-chan error {
return c.inner.Errors()
}
func (c ConfigPatchManager) ActionErrors() <-chan error {
return c.inner.ActionErrors()
}
func (c ConfigPatchManager) Watch() <-chan ConfigChange {
return c.outCh
}
func (c ConfigPatchManager) patch(src <-chan ConfigChange, dst chan ConfigChange) {
for ccc := range src {
dst <- c.patchFn(ccc)
}
}
func NewConfigPatchManager(inner ConfigManager, pf ConfigPatch) *ConfigPatchManager {
return &ConfigPatchManager{
inner: inner,
outCh: make(chan ConfigChange),
patchFn: pf,
}
}