-
Notifications
You must be signed in to change notification settings - Fork 148
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
[Feature] Start/stop monitoring server based on monitoring config #3584
Merged
Merged
Changes from 6 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
08378a4
start stop server decision based only on metrics.enabled
michalpristas 970c9a3
coordinator ut
michalpristas 81cc18f
conflicts
michalpristas 7de6ef7
conflicts
michalpristas 9b65627
Merge branch 'main' of github.com:elastic/elastic-agent into feat/rel…
michalpristas 0366ce4
Merge branch 'main' of github.com:elastic/elastic-agent into feat/rel…
michalpristas ec69b77
use rather atomic
michalpristas a23678e
Merge branch 'main' of github.com:elastic/elastic-agent into feat/rel…
michalpristas 7439e99
Merge branch 'main' of github.com:elastic/elastic-agent into feat/rel…
michalpristas 2ee0b57
Merge branch 'main' of github.com:elastic/elastic-agent into feat/rel…
michalpristas 1041dea
conflicts
michalpristas 62a588e
Merge branch 'main' of github.com:elastic/elastic-agent into feat/rel…
michalpristas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
changelog/fragments/1696249276-Start-stop-monitoring-server-based-on-monitoring-config.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Kind can be one of: | ||
# - breaking-change: a change to previously-documented behavior | ||
# - deprecation: functionality that is being removed in a later release | ||
# - bug-fix: fixes a problem in a previous version | ||
# - enhancement: extends functionality but does not break or fix existing behavior | ||
# - feature: new functionality | ||
# - known-issue: problems that we are aware of in a given version | ||
# - security: impacts on the security of a product or a user’s deployment. | ||
# - upgrade: important information for someone upgrading from a prior version | ||
# - other: does not fit into any of the other categories | ||
kind: enhancement | ||
|
||
# Change summary; a 80ish characters long description of the change. | ||
summary: Start/stop monitoring server based on monitoring config | ||
|
||
# Long description; in case the summary is not enough to describe the change | ||
# this field accommodate a description without length limits. | ||
#description: | ||
|
||
# Affected component; a word indicating the component this changeset affects. | ||
component: elastic-agent | ||
|
||
# PR number; optional; the PR number that added the changeset. | ||
# If not present is automatically filled by the tooling finding the PR where this changelog fragment has been added. | ||
# NOTE: the tooling supports backports, so it's able to fill the original PR number instead of the backport PR number. | ||
# Please provide it if you are adding a fragment for a different PR. | ||
pr: 3492 | ||
|
||
# Issue number; optional; the GitHub issue related to this changeset (either closes or is part of). | ||
# If not present is automatically filled by the tooling with the issue linked to the PR number. | ||
issue: 2735 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
120 changes: 120 additions & 0 deletions
120
internal/pkg/agent/application/monitoring/reload/reload.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
// 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 reload | ||
|
||
import ( | ||
"sync" | ||
|
||
"github.com/elastic/elastic-agent/internal/pkg/agent/configuration" | ||
"github.com/elastic/elastic-agent/internal/pkg/agent/errors" | ||
aConfig "github.com/elastic/elastic-agent/internal/pkg/config" | ||
monitoringCfg "github.com/elastic/elastic-agent/internal/pkg/core/monitoring/config" | ||
"github.com/elastic/elastic-agent/pkg/core/logger" | ||
) | ||
|
||
// ServerController controls the server runtime | ||
type ServerController interface { | ||
Start() | ||
Stop() error | ||
} | ||
type serverConstructor func() (ServerController, error) | ||
|
||
type ServerReloader struct { | ||
s ServerController | ||
log *logger.Logger | ||
newServerFn serverConstructor | ||
|
||
config *monitoringCfg.MonitoringConfig | ||
isServerRunning bool | ||
isServerRunningLock sync.Mutex | ||
} | ||
|
||
func NewServerReloader(newServerFn serverConstructor, log *logger.Logger, mcfg *monitoringCfg.MonitoringConfig) *ServerReloader { | ||
sr := &ServerReloader{ | ||
log: log, | ||
config: mcfg, | ||
newServerFn: newServerFn, | ||
} | ||
|
||
return sr | ||
} | ||
|
||
func (sr *ServerReloader) Start() { | ||
sr.isServerRunningLock.Lock() | ||
defer sr.isServerRunningLock.Unlock() | ||
|
||
sr.start() | ||
} | ||
|
||
func (sr *ServerReloader) start() { | ||
if sr.s != nil && sr.isServerRunning { | ||
// server is already running | ||
return | ||
} | ||
|
||
sr.log.Info("Starting server") | ||
var err error | ||
sr.s, err = sr.newServerFn() | ||
if err != nil { | ||
sr.log.Errorf("Failed creating a server: %v", err) | ||
return | ||
} | ||
|
||
sr.s.Start() | ||
sr.log.Debugf("Server started") | ||
sr.isServerRunning = true | ||
} | ||
|
||
func (sr *ServerReloader) Stop() error { | ||
sr.isServerRunningLock.Lock() | ||
defer sr.isServerRunningLock.Unlock() | ||
|
||
return sr.stop() | ||
} | ||
|
||
func (sr *ServerReloader) stop() error { | ||
if sr.s == nil { | ||
// stopping not started server | ||
sr.isServerRunning = false | ||
return nil | ||
} | ||
sr.log.Info("Stopping server") | ||
|
||
sr.isServerRunning = false | ||
if err := sr.s.Stop(); err != nil { | ||
return err | ||
} | ||
|
||
sr.log.Debugf("Server stopped") | ||
sr.s = nil | ||
return nil | ||
} | ||
|
||
func (sr *ServerReloader) Reload(rawConfig *aConfig.Config) error { | ||
sr.isServerRunningLock.Lock() | ||
defer sr.isServerRunningLock.Unlock() | ||
|
||
newConfig := configuration.DefaultConfiguration() | ||
if err := rawConfig.Unpack(&newConfig); err != nil { | ||
return errors.New(err, "failed to unpack monitoring config during reload") | ||
} | ||
|
||
sr.config = newConfig.Settings.MonitoringConfig | ||
|
||
shouldRunMetrics := sr.config.Enabled | ||
if shouldRunMetrics && !sr.isServerRunning { | ||
sr.start() | ||
|
||
sr.isServerRunning = true | ||
return nil | ||
} | ||
|
||
if !shouldRunMetrics && sr.isServerRunning { | ||
sr.isServerRunning = false | ||
return sr.stop() | ||
} | ||
|
||
return nil | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
[Suggestion]
You could use an
atomic.Bool
instead of the mutex. I believe it'd make the code easier to maintain as it's not imediately obviousstart()
andstop()
cannot lock the mutex becauseReload()
does so and then call them.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.
good point