-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add stop functionality for output config changes #34049
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -41,15 +41,19 @@ type BeatV2Manager struct { | |||||
payload map[string]interface{} | ||||||
|
||||||
// stop callback must be registered by libbeat, as with the V1 callback | ||||||
stopFunc func() | ||||||
stopMut sync.Mutex | ||||||
beatStop sync.Once | ||||||
stopFunc func() | ||||||
stopOnOutputReload bool | ||||||
stopMut sync.Mutex | ||||||
beatStop sync.Once | ||||||
|
||||||
// sync channel for shutting down the manager after we get a stop from | ||||||
// either the agent or the beat | ||||||
stopChan chan struct{} | ||||||
|
||||||
isRunning bool | ||||||
// is set on first instance of a config reload, | ||||||
// allowing us to restart the beat if stopOnOutputReload is set | ||||||
outputIsConfigured bool | ||||||
|
||||||
// used for the debug callback to report as-running config | ||||||
lastOutputCfg *reload.ConfigWithMeta | ||||||
|
@@ -87,12 +91,16 @@ func NewV2AgentManager(config *conf.C, registry *reload.Registry, _ uuid.UUID) ( | |||||
// NewV2AgentManagerWithClient actually creates the manager instance used by the rest of the beats. | ||||||
func NewV2AgentManagerWithClient(config *Config, registry *reload.Registry, agentClient client.V2) (lbmanagement.Manager, error) { | ||||||
log := logp.NewLogger(lbmanagement.DebugK) | ||||||
if config.OutputRestart { | ||||||
log.Infof("Output reload is enabled, the beat will restart as needed on change of output config") | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: No need to use
Suggested change
|
||||||
} | ||||||
m := &BeatV2Manager{ | ||||||
config: config, | ||||||
logger: log.Named("V2-manager"), | ||||||
registry: registry, | ||||||
units: make(map[string]*client.Unit), | ||||||
stopChan: make(chan struct{}, 1), | ||||||
stopOnOutputReload: config.OutputRestart, | ||||||
config: config, | ||||||
logger: log.Named("V2-manager"), | ||||||
registry: registry, | ||||||
units: make(map[string]*client.Unit), | ||||||
stopChan: make(chan struct{}, 1), | ||||||
} | ||||||
|
||||||
if config.Enabled { | ||||||
|
@@ -338,6 +346,16 @@ func (cm *BeatV2Manager) handleOutputReload(unit *client.Unit) { | |||||
} | ||||||
cm.logger.Debugf("Got Output unit config '%s'", rawConfig.GetId()) | ||||||
|
||||||
// if needed, stop the beat, let agent restart | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We are sure this only triggers when the actual output configuration changes? And it won't restart for changes in the unit that are not the actual output configuration, like the log level? https://github.com/elastic/elastic-agent-client/blob/15881a8e64ef95f32f688c933319cd926ff500b0/elastic-agent-client.proto#L280 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah, didn't think of that! Should probably add some kind of check to diff the actual config. |
||||||
if cm.stopOnOutputReload && cm.outputIsConfigured { | ||||||
cm.logger.Infof("beat will now stop for output reload") | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: same thing here
Suggested change
|
||||||
// in the future we'll want some set "reloading" state, | ||||||
// but for now set the state this way. | ||||||
_ = unit.UpdateState(client.UnitStateStopping, "got output unit, beat will restart", nil) | ||||||
cm.Stop() | ||||||
return | ||||||
} | ||||||
|
||||||
reloadConfig, err := groupByOutputs(rawConfig) | ||||||
if err != nil { | ||||||
errString := fmt.Errorf("Failed to generate config for output: %w", err) | ||||||
|
@@ -359,6 +377,8 @@ func (cm *BeatV2Manager) handleOutputReload(unit *client.Unit) { | |||||
_ = unit.UpdateState(client.UnitStateFailed, errString.Error(), nil) | ||||||
return | ||||||
} | ||||||
// set to true, we'll reload the output if we need to re-configure | ||||||
cm.outputIsConfigured = true | ||||||
cmacknz marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
_ = unit.UpdateState(client.UnitStateHealthy, "reloaded output component", nil) | ||||||
} | ||||||
|
||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Let's use the exact same name that was used in the 8.5 spec files so it is clear we just changed the implementation when comparing the two: https://github.com/elastic/elastic-agent/blob/f3d39629cc740ce7cf868a228da9e2dec1a83dec/internal/spec/filebeat.yml#L12